Skip to content

Commit 2a4cf72

Browse files
committed
Add #!/bin/bash to all scripts
1 parent 611b27c commit 2a4cf72

File tree

7 files changed

+7
-1
lines changed

7 files changed

+7
-1
lines changed

utils/addDevTag

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# check if we need to merge master into this branch------------
23
if [[ $(git log origin/master ^HEAD) ]]; then
34
echo "You need to merge master into this branch. Exiting"

utils/addReleaseTag

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# working directory is inside supertokens-*/. Expects a releasePassword file to be ../
23
# ./addReleaseTag [--forced]
34
# get version------------

utils/cleanTestEnvCicd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
rm -rf core
23
rm -rf plugin-interface
34
rm -rf plugin

utils/cleanTestEnvLocal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
rm -rf core
23
rm -rf plugin-interface
34
rm -rf plugin

utils/createConfigFileForTesting

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
#!/bin/bash
22
> config_temp.yaml
33

44
prefix=`./utils/project-prefix`

utils/setupTestEnvCicd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# load version and jars
23
# setup jars, dependencies and version
34

utils/setupTestEnvLocal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# setup jars, dependencies and version
23

34
./gradlew clean

0 commit comments

Comments
 (0)