diff options
author | Aaron Ball <nullspoon@oper.io> | 2017-06-23 08:47:59 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2017-06-23 08:47:59 -0600 |
commit | 5fc33467ee249290799fff1178e9ee512735db87 (patch) | |
tree | 9174103612371b3e48c66cf86739eda8b56ba469 | |
parent | c7781d4254ef261ee78f93bf5977a68e46d6c163 (diff) | |
parent | 84d9a6363b1179565d1e7d1af82005673df76515 (diff) | |
download | portimg-5fc33467ee249290799fff1178e9ee512735db87.tar.gz portimg-5fc33467ee249290799fff1178e9ee512735db87.tar.xz |
Merge branch 'port-fail-exit'
-rwxr-xr-x | bin/pkgimg.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/pkgimg.sh b/bin/pkgimg.sh index 7286f2e..25afe11 100755 --- a/bin/pkgimg.sh +++ b/bin/pkgimg.sh @@ -48,6 +48,7 @@ function main { for port in $(grep -v '^#' ${manifest} | grep -v '^[ ]*$'); do # Call pkgmk to build the port pkgmk ${port} + [ $? -gt 0 ] && return 1 # Move the package contents to the install base linfo "Synchronizing ${port} build to install base ${installbase}" |