[import_images] Fixed logic typo
This commit is contained in:
parent
cabf81552a
commit
0bed00bedc
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ import_images() {
|
|||
done
|
||||
|
||||
# Checks if ACCURIP is defined. If so, source CUETOOLS, else, SOURCE is EAC
|
||||
[[ -z ${ACCURIP+x} ]] || local SOURCE=CUETOOLS && SOURCE=EAC
|
||||
[[ -z ${ACCURIP+x} ]] && local SOURCE=CUETOOLS && SOURCE=EAC
|
||||
|
||||
# Checks if path is valid
|
||||
for path in ${pathList[@]}; do
|
||||
|
|
Loading…
Reference in a new issue