Handle spaces in shell script

This commit is contained in:
Eric Anderson 2015-03-13 15:20:14 -07:00
parent 54c31b0325
commit c5bcbc62fe
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ if [ -z "$TEST_TMP_DIR" ]; then
exit 1; exit 1;
fi fi
cd $(dirname $0) cd "$(dirname "$0")"
INPUT_FILE="proto/test.proto" INPUT_FILE="proto/test.proto"
OUTPUT_FILE="$TEST_TMP_DIR/TestServiceGrpc.src.jar" OUTPUT_FILE="$TEST_TMP_DIR/TestServiceGrpc.src.jar"