travis CI build fix

This commit is contained in:
Joshua Bell 2018-04-10 21:12:48 -07:00
parent 2ce1bfc58d
commit f6830a7f2e
3 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ install:
/tmp/cc65/bin/cc65 --version
script:
- MAKE_FLAGS="CC65=/tmp/cc65/bin"
- cd desktop
- res/go.sh
- cd ..

View File

@ -13,7 +13,7 @@ function cecho {
}
function do_make {
make "$1" \
make $MAKE_FLAGS "$1" \
&& (cecho green "make $1 good") \
|| (tput blink ; cecho red "MAKE $1 BAD" ; return 1)
}

View File

@ -13,7 +13,7 @@ function cecho {
}
function do_make {
make "$1" \
make $MAKE_FLAGS "$1" \
&& (cecho green "make $1 good") \
|| (tput blink ; cecho red "MAKE $1 BAD" ; return 1)
}