demotool/.vim.local/scripts/vimmake.test

8 lines
122 B
Bash
Executable file

#!/bin/bash
if make -j 8; then
if [ -x /usr/bin/optirun ]; then
optirun ./tourista test
else
./tourista test
fi
fi