diff options
author | B. Watson <yalhcru@gmail.com> | 2022-02-07 20:55:58 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-02-07 20:55:58 -0500 |
commit | 12f4c9554b536b441d3ff873ae6661b906f8c4ea (patch) | |
tree | 22181e321412f328ce8818cfaf10ee090c03a1d1 /sbrun | |
parent | b23e4b94d6dc6deaf13562d31b75f7201936ea6f (diff) | |
download | sbostuff-12f4c9554b536b441d3ff873ae6661b906f8c4ea.tar.gz |
sbrun: dont delete build.log with -c option
Diffstat (limited to 'sbrun')
-rwxr-xr-x | sbrun | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -282,7 +282,7 @@ cleanup_log() { } cleanup_build() { - [ "$CLEANUP" = "yes" ] && ( rm -rf "$TMP" ; rm -f $BUILDLOG ) + [ "$CLEANUP" = "yes" ] && ( rm -rf "$TMP" ) } # Add a dir to $PATH, if not already present. This is actually kinda |