mirror of
https://github.com/Jonny007-MKD/OTR-DecodeAll
synced 2025-01-22 08:49:50 +01:00
Check if output file of cutter exists
This commit is contained in:
parent
bf456ea2f0
commit
441d1811ae
1 changed files with 6 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue