]> gitweb.hhaalo.de Git - albentohandy.git/commitdiff
change libs abort cmd not found
authorBastian Dehn <hhaalo@arcor.de>
Sun, 20 Sep 2026 14:56:05 +0000 (16:56 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sun, 20 Sep 2026 14:56:05 +0000 (16:56 +0200)
libs/flac.sh
libs/mp3.sh
libs/opus.sh
libs/vorbis.sh

index a493840618f774f68654ec8f73b455702b83106d..327e0c5720d20b772612f4b4f7dc33df83a41894 100644 (file)
@@ -32,4 +32,4 @@ execute()
        picture_to_flac "$workdir" || return $?
 }
 
-check_flac_programs
+check_flac_programs || return $?
index 157bcb8dde428db7052125f9c2c5df10442bde4f..3b66031efe389d1d15d97d82feb0c5d19f20a35e 100644 (file)
@@ -126,7 +126,7 @@ execute()
        convert_flac_to_mp3 "$workdir" || return $?
 }
 
-check_mp3_programs
+check_mp3_programs || return $?
 export -f flac_to_mp3
 export -f encoding_flac_to_mp3
 export -f read_flac_to_mp3_tags
index c3afb60568f06023cb8106b548869c89606133dd..8e69c7f3353e262bb6bb36767399e7b76ea2304c 100644 (file)
@@ -42,5 +42,5 @@ execute()
        convert_flac_to_opus "$workdir" || return $?
 }
 
-check_opus_programs
+check_opus_programs || return $?
 export -f flac_to_opus
index 0f85b85d402c4ba87788cb0233dd499a43fcd42d..22c34564262ec05346e369d872cd16b7dad02b0f 100644 (file)
@@ -115,7 +115,7 @@ execute()
        convert_flac_to_ogg "$workdir" || return $?
 }
 
-check_vorbis_programs
+check_vorbis_programs || return $?
 export -f flac_to_vorbis
 export -f encoding_flac_to_ogg
 export -f read_flac_to_ogg_tags