diff options
Diffstat (limited to 'tools/audio_extract')
-rw-r--r-- | tools/audio_extract | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/audio_extract b/tools/audio_extract index a37bcdf..9039ade 100644 --- a/tools/audio_extract +++ b/tools/audio_extract @@ -21,8 +21,8 @@ fi # FORMAT="wav" #fi -if [ ! -f $BASENAME.wav ]; then - echo " * File $BASENAME.wav does not exists:" +if [ ! -f $NAME.wav ]; then + echo " * File $NAME.wav does not exists:" echo -n " * Extracting audio ($FORMAT)..." if [ "$3" ]; then @@ -36,5 +36,5 @@ if [ ! -f $BASENAME.wav ]; then echo -e "OK!" else - echo " * File $BASENAME.wav already exists." + echo " * File $NAME.wav already exists." fi |