diff options
Diffstat (limited to 'update-archlinux32-package')
-rwxr-xr-x | update-archlinux32-package | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/update-archlinux32-package b/update-archlinux32-package index 33c9549..ae17d69 100755 --- a/update-archlinux32-package +++ b/update-archlinux32-package @@ -113,4 +113,9 @@ git -C "${git_repo_path}" commit -m "${repo}/${pkgname}: ${old_pkgver} -> ${new_ if ! ${vm_is_running}; then ssh arch32-test 'sudo poweroff' + err=$? + if [ ${err} -eq 255 ]; then + err=0 + fi + exit ${err} fi |