Remove 1B that did nothing but was annoying

This commit is contained in:
Salt 2019-06-21 18:51:26 -05:00
parent 28878bd911
commit 4371075861

View File

@ -393,7 +393,7 @@ step_execute() {
log "Found target for \"$filename\": \"$execline\"" log "Found target for \"$filename\": \"$execline\""
if ! [ "$_dryrun" = "1" ]; then if ! [ "$_dryrun" = "1" ]; then
if [ -f "$logfile" ]; then if [ -f "$logfile" ]; then
[ -f "$logfile.old" ] && rm "$logfile.old" [ -f "$logfile.old" ] && rm "$logfile.old"
mv "$logfile" "$logfile.old" mv "$logfile" "$logfile.old"
fi fi
bash -c "$execline" > "$logfile" 2>&1 & bash -c "$execline" > "$logfile" 2>&1 &