Removed -e from refine script and removed dud line from server_test.

$RUN_CMD is always empty in server_test.
This commit is contained in:
Matthew Blissett 2015-01-23 15:29:43 +00:00
parent 0115186fd5
commit 0e79151023

8
refine
View File

@ -1,4 +1,4 @@
#!/bin/bash -e
#!/bin/bash
##########################################################
# OpenRefine Control System #
@ -15,12 +15,12 @@ exit 1
}
error() {
echo "$1"
echo "Error: $1"
exit 1
}
warn() {
echo "$1"
echo "Warning: $1"
exit 0
}
@ -633,8 +633,6 @@ ui_test() {
server_test() {
ant server_test
$RUN_CMD || error "Failed passing server tests"
}
run() {