diff options
author | lassulus <lass@aidsballs.de> | 2016-10-18 20:37:05 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-10-18 20:37:05 +0200 |
commit | f9a4e6ec55ed5a9667dde79e654f4ad7da03229a (patch) | |
tree | 135bd75e05b6819eea385904150fe5799c636d58 /bin | |
parent | f8f9893425eaa2c875760c51bc6f222525400bbf (diff) |
check for mp3 files instead of ogg
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/yout2mp3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/yout2mp3 b/bin/yout2mp3 index 74ed177..72ea234 100755 --- a/bin/yout2mp3 +++ b/bin/yout2mp3 @@ -16,7 +16,7 @@ fi cd $target_folder -if file=$(ls | grep "[-]$id\\.ogg\$"); then +if file=$(ls | grep "[-]$id\\.mp3\$"); then echo "already done: $file in $target_folder" >&2 exit fi |