Skip to content

Commit 0fbbcdf

Browse files
committed
Need to use bash instead.
1 parent 1d3e539 commit 0fbbcdf

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -eu
1+
#!/bin/bash -eu
22
{ set +x; } 2>/dev/null
33
SOURCE=$0
44
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"

clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh -eu
1+
#!/bin/bash -eu
22
{ set +x; } 2>/dev/null
33
SOURCE="${BASH_SOURCE[0]}"
44
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"

pack.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#!/bin/sh -eu
1+
#!/bin/bash -eu
22
{ set +x; } 2>/dev/null
3-
SOURCE=$0
3+
SOURCE="${BASH_SOURCE[0]}"
44
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
55

66
OS="Mac"

test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#!/bin/sh -eu
1+
#!/bin/bash -eu
22
{ set +x; } 2>/dev/null
3-
SOURCE=$0
3+
SOURCE="${BASH_SOURCE[0]}"
44
DIR="$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd )"
55

66
OS="Mac"

0 commit comments

Comments
 (0)