Fix up error message

This commit is contained in:
Daniel Løvbrøtte Olsen 2020-04-01 15:45:56 +02:00
parent c965401286
commit 8fbf436b94
2 changed files with 7 additions and 1 deletions

View File

@ -19,7 +19,7 @@ mod workunit;
use workunit::WUnit; use workunit::WUnit;
use workunit::EStatus; use workunit::EStatus;
const VERSION: &str = "0.4.0"; const VERSION: &str = "0.5.0";
#[derive(Default, Debug)] #[derive(Default, Debug)]
struct SharedState { struct SharedState {

View File

@ -109,6 +109,9 @@ while true; do
fi fi
set -e set -e
echo "Deleting Source and Temporary files"
rm "$input" "$input".fpf
else else
set +e set +e
eval 'ffmpeg -nostats -hide_banner -loglevel warning \ eval 'ffmpeg -nostats -hide_banner -loglevel warning \
@ -123,6 +126,9 @@ while true; do
continue continue
fi fi
set -e set -e
echo "Deleting Source"
rm "$input"
fi fi
set +e set +e