2
0

work around pinf hang under Travis by forcing the TERM to dumb.

This commit is contained in:
Maarten Billemont
2014-11-18 07:32:17 -05:00
parent c6cd50379e
commit 7d6f2533db
4 changed files with 7 additions and 4 deletions

View File

@@ -56,7 +56,6 @@ copyImage() {
local src=$1 dst=$2
if [[ $src = *.9.png || $src = *.9@*.png ]]; then
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
@@ -68,7 +67,6 @@ exit
done <<< "$niftyNinePatch"
fnip
else
exit
pinf '%s -> %s' "${src##*/}" "${dst##*/}"
cp "$src" "$dst"
fnip