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

9 lines
122 B
Text
Raw Normal View History

2017-09-30 10:26:30 +02:00
#!/bin/bash
if make -j 8; then
if [ -x /usr/bin/optirun ]; then
2017-12-03 12:33:22 +01:00
optirun ./tourista test
else
2017-12-03 12:33:22 +01:00
./tourista test
fi
2017-09-30 10:26:30 +02:00
fi