Skip to content

Commit

Permalink
Merge pull request #7855 from murdos/fix-script-shebang
Browse files Browse the repository at this point in the history
Use more universal shebang for scripts
  • Loading branch information
pascalgrimaud authored Oct 26, 2023
2 parents e1e5b6d + 98615c4 commit 43f1f2e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

GIT_MAIN_BRANCH='main'
GIT_REMOTE='upstream'
Expand Down
2 changes: 1 addition & 1 deletion tests-ci/generate.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

show_syntax() {
echo "Usage: $0 <application>" >&2
Expand Down
2 changes: 1 addition & 1 deletion tests-ci/sonar.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

application=$1
if [[ $application == '' ]]; then
Expand Down
2 changes: 1 addition & 1 deletion tests-ci/start.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

PORT=$1
if [[ $PORT == '' ]]; then
Expand Down
2 changes: 1 addition & 1 deletion tests-ci/start_docker_compose.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

set -e

Expand Down
2 changes: 1 addition & 1 deletion tests-ci/stop.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

echo "*** Stopping JHipster Lite in 5sec..."
sleep 5
Expand Down
2 changes: 1 addition & 1 deletion tests-ci/wait_sonar.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

log() {
echo "*** $(date +'%Y-%m-%d %H:%M:%S')" "$@"
Expand Down

0 comments on commit 43f1f2e

Please sign in to comment.