Attempt to test whether Lua fetch succeeded (and pdcurses for windows and msdos as well) If those prerequisite fetches and untars didn't work, just exit without marking the travis-ci build as a failure so that the development team isn't notified about something transient that they don't need to fix in the code.
9 lines
252 B
Bash
9 lines
252 B
Bash
set -x
|
|
mkdir -p lib
|
|
cd lib
|
|
git clone --depth 1 https://github.com/wmcbrine/PDCurses.git pdcurses
|
|
#git clone --depth 1 https://github.com/universal-ctags/ctags.git ctags
|
|
curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz
|
|
tar zxf lua-5.3.5.tar.gz
|
|
cd ../
|