]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - misc/tools/cached-converter.sh
fix another typo
[xonotic/xonotic.git] / misc / tools / cached-converter.sh
index 012e516d06fa73d6431b7d061bba780dd0c90423..26b6ddf87e66f50138f7b9bfaed93e88290d5453 100755 (executable)
@@ -46,8 +46,8 @@ cached()
        [ -z "$outfile2" ] || name2="$CACHEDIR/$method-$options/$sum-2.${outfile2##*.}"
        tempfile1="${name1%/*}/new-${name1##*/}"
        [ -z "$outfile2" ] || tempfile2="${name2%/*}/new-${name2##*/}"
-       [ -z "${outfile1##*/*}" && mkdir -p "${outfile1%/*}"
-       [ -z "$outfile2" ] || [ -z "${outfile2##*/*}" && mkdir -p "${outfile2%/*}"
+       [ -z "${outfile1##*/*}" && mkdir -p "${outfile1%/*}"
+       [ -z "$outfile2" ] || { [ -z "${outfile2##*/*}" ] && mkdir -p "${outfile2%/*}"; }
        if [ -f "$name1" ]; then
                ln "$name1" "$outfile1" 2>/dev/null || cp "$name1" "$outfile1"
                [ -z "$outfile2" ] || ln "$name2" "$outfile2" 2>/dev/null || cp "$name2" "$outfile2"