From 9531ed8289d08760a09a33a37f0e1a2bd62bb80d Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sun, 20 Sep 2026 16:56:05 +0200 Subject: [PATCH] change libs abort cmd not found --- libs/flac.sh | 2 +- libs/mp3.sh | 2 +- libs/opus.sh | 2 +- libs/vorbis.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/flac.sh b/libs/flac.sh index a493840..327e0c5 100644 --- a/libs/flac.sh +++ b/libs/flac.sh @@ -32,4 +32,4 @@ execute() picture_to_flac "$workdir" || return $? } -check_flac_programs +check_flac_programs || return $? diff --git a/libs/mp3.sh b/libs/mp3.sh index 157bcb8..3b66031 100644 --- a/libs/mp3.sh +++ b/libs/mp3.sh @@ -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 diff --git a/libs/opus.sh b/libs/opus.sh index c3afb60..8e69c7f 100644 --- a/libs/opus.sh +++ b/libs/opus.sh @@ -42,5 +42,5 @@ execute() convert_flac_to_opus "$workdir" || return $? } -check_opus_programs +check_opus_programs || return $? export -f flac_to_opus diff --git a/libs/vorbis.sh b/libs/vorbis.sh index 0f85b85..22c3456 100644 --- a/libs/vorbis.sh +++ b/libs/vorbis.sh @@ -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 -- 2.47.3