diff options
| author | toufic ar <contact@toufy.me> | 2026-05-15 04:23:11 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-05-15 04:23:11 +0300 |
| commit | 4a17d522ced7e9b775570afd6ccbbbe225f957c3 (patch) | |
| tree | 7ded91eb8b422fa0f2ca5157e6c05c906ab80237 | |
| parent | 34f5f063daee0779d21c8306e3897e52654a31aa (diff) | |
| download | makeshiftci-f11ecf9b89e8819c5697b47346f3545fdaa33878.tar.gz makeshiftci-f11ecf9b89e8819c5697b47346f3545fdaa33878.zip | |
fix exit statusv0.3.0flake-webui
| -rwxr-xr-x | msci | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -92,11 +92,11 @@ run_project() { "$pimage" \ sh -c "$prun" | tee -a "$2" && echo "docker failed" | tee -a "$2" && exit 1 done - (popd &>/dev/null && rm -rf "$repo_path") || + popd &>/dev/null + ! rm -rf "$repo_path" && echo "failed to delete tmp repo" | tee -a "$2" && exit 1 echo "finished" | tee -a "$2" ) - } create_project() { |
