exit on error sucks.

pull/17/head
John Shahid 2013-10-08 11:21:50 -04:00
parent 2986037e63
commit f3e1705180
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
#!/usr/bin/env bash
[ "x`uname`" == "xLinux" ] && yacc -t -d query.yacc && lex -i query.lex
if [ "x`uname`" == "xLinux" ]; then
yacc -t -d query.yacc && lex -i query.lex
fi