diff options
Diffstat (limited to 'xi_buildscript.sh')
-rw-r--r-- | xi_buildscript.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xi_buildscript.sh b/xi_buildscript.sh index a60efe9..b465c74 100644 --- a/xi_buildscript.sh +++ b/xi_buildscript.sh @@ -67,10 +67,11 @@ for xibuild in $PKG_NAME.xibuild $(ls *.xibuild | grep -v "^$PKG_NAME.xibuild$") fi for t in $stages; do - type $t >/dev/null && { + type $t >/dev/null 2>/dev/null && { echo "==========================$t stage==========================" $t || exit 1 } done - done + +exit 0 |