2
0

exit before pinf and cp

This commit is contained in:
Maarten Billemont 2014-11-18 07:21:56 -05:00
parent 964b6f050b
commit fb86b3bc15

View File

@ -56,8 +56,8 @@ copyImage() {
local src=$1 dst=$2
if [[ $src = *.9.png || $src = *.9@*.png ]]; then
pinf '%s -> %s (ninepatch)' "${src##*/}" "${dst##*/}"
exit
pinf '%s -> %s (ninepatch)' "${src##*/}" "${dst##*/}"
niftyNinePatch=$(java -Dapple.awt.UIElement=true -jar Scripts/NiftyNinePatchHelper.jar "$src" "$dst") || return
while IFS='=' read var value; do
[[ $var = imageMode ]] && value=${value#'"resize:'} value=${value%'"'} && IFS=, read capLeft capWidth capRight capTop _ _ _ capHeight _ _ _ capBottom <<< "$value"
@ -69,6 +69,7 @@ exit
fnip
else
pinf '%s -> %s' "${src##*/}" "${dst##*/}"
exit
cp "$src" "$dst"
fnip
fi