mirror of
https://github.com/pret/agbcc.git
synced 2026-08-23 02:44:06 -05:00
Merge pull request #8 from NieDzejkob/stop-on-error
Stop the script on the first error using the set -e command
This commit is contained in:
1
build.sh
1
build.sh
@@ -1,4 +1,5 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
make -C gcc clean
|
||||
make -C gcc old
|
||||
mv gcc/old_agbcc .
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
if [ "$1" != "" ]; then
|
||||
mkdir -p $1/tools/agbcc
|
||||
mkdir -p $1/tools/agbcc/bin
|
||||
|
||||
Reference in New Issue
Block a user