diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-10-21 08:24:41 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-10-21 08:24:41 -0700 |
commit | 4955b30b7f17b15d45d7df14b7e538bd08ac3d04 (patch) | |
tree | ebedb94a6b795ca0165862fd623a09df3c874981 /build | |
parent | 66abe7c1bd54ca227b9e035d52a1c2f1ea387b5e (diff) | |
download | mu-4955b30b7f17b15d45d7df14b7e538bd08ac3d04.tar.gz |
3540
Diffstat (limited to 'build')
-rwxr-xr-x | build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build b/build index ab9c92fd..64909086 100755 --- a/build +++ b/build @@ -1,4 +1,6 @@ #!/bin/sh +# returns 0 on successful build or nothing to build +# non-zero exit status only on error during building set -e # stop immediately on error # [0-9]*.cc -> mu.cc -> .build/*.cc -> .build/*.o -> .build/mu_bin @@ -7,8 +9,6 @@ set -e # stop immediately on error # can also be called with a layer to only build until # $ ./build --until 050 -# returns 0 on successful build or nothing to build; -# non-zero exit status only on error during building UNTIL_LAYER=${2:-zzz} # there's two mechanisms for fast builds here: |