Skip to content

Commit

Permalink
add shebang to scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
hello2all committed Dec 3, 2020
1 parent 6a44dc2 commit 27ae57a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions run-debug.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
if [ ! -d "debug" ]; then
mkdir debug
fi
Expand Down
1 change: 1 addition & 0 deletions run-release.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
if [ ! -d "release" ]; then
mkdir release
fi
Expand Down
1 change: 1 addition & 0 deletions run-test.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
if [ ! -d "debug" ]; then
mkdir debug
fi
Expand Down

0 comments on commit 27ae57a

Please sign in to comment.