1
0
Fork 0
mirror of https://github.com/Jonny007-MKD/OTR-DecodeAll synced 2024-05-02 20:54:06 +02:00

Check if output file of cutter exists

This commit is contained in:
Jonny007-MKD 2015-03-10 22:23:55 +01:00
parent bf456ea2f0
commit 441d1811ae

View file

@ -508,7 +508,12 @@ function funcCut {
success=$?
case $success in
0)
funcLog 4 "Successfully cut";;
if [ ! -f "$pathTmpAbsCut" ]; then
success=1
funcLog 1 "multicutmkv: Returned success, but output file is missing!"
else
funcLog 4 "Successfully cut"
fi;;
1)
funcLog 1 "multicutmkv: General error!";;
2)