exit on error sucks.
parent
2986037e63
commit
f3e1705180
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue