Skip to content

Commit dd28c2c

Browse files
committed
more bash logging
1 parent 26a9fe8 commit dd28c2c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build/index.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#!/bin/bash
2-
set +e
2+
set -x
33
tar_exec=$(command -v gtar)
44
if [ $? -ne 0 ]; then
55
tar_exec=$(command -v tar)
66
fi
77

8-
set -e
9-
echo using tar executable at $tar_exec
10-
118
tar_options="--wildcards --ignore-case"
129
if [[ "$OSTYPE" == "darwin"* ]]; then
1310
tar_options=""
1411
fi
1512

13+
set -e
14+
echo using tar executable: $tar_exec $tar_options
15+
1616
cd $(dirname $0)
1717

1818
download () {

0 commit comments

Comments
 (0)