diff options
author | Renato Botelho <renato@netgate.com> | 2015-09-10 08:01:25 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2015-09-10 08:01:25 -0300 |
commit | cc145494c282b712a452584b4e15ef716dec183e (patch) | |
tree | cf98e7fa92d40d5bb64fe20d81b7a871cb0a977d /build.sh | |
parent | f4105497c4127d9b41f80d8a12e11d4f9127255a (diff) | |
download | pfsense-cc145494c282b712a452584b4e15ef716dec183e.zip pfsense-cc145494c282b712a452584b4e15ef716dec183e.tar.gz |
Add waiting for jobs info to snapshots log too
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -413,7 +413,11 @@ done core_pkg_create_repo -echo ">>> NOTE: waiting for jobs: `jobs -l` to finish..." +if [ -n "${SNAPSHOTS}" ]; then + snapshots_update_status ">>> NOTE: waiting for jobs: $(jobs -l) to finish..." +else + echo ">>> NOTE: waiting for jobs: $(jobs -l) to finish..." +fi wait if [ -n "${SNAPSHOTS}" ]; then |