mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
fix checkstyle SC2086
This commit is contained in:
parent
7888b512d3
commit
9a4c75bbf7
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@
|
|||
# $1 - Fullpath of directory to be processed. eg./mnt/user/downloads/some.artist_some.album
|
||||
|
||||
# $7 - Status of post processing. 0 = OK, 1 = failed verification, 2 = failed unpack, 3 = 1+2
|
||||
if [ ! -z $7 ] && [ $7 -gt 0 ]; then
|
||||
if [ ! -z "$7" ] && [ "$7" -gt 0 ]; then
|
||||
echo "post-processing failed, bypassing script"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue