Commit 6bfeb514cacb27032fa85082e252e94c971717cc
1 parent
06c0b1c4
Exists in
master
and in
98 other branches
Fix script used to start fitnesse to be usable everywhere
Showing
1 changed file
with
2 additions
and
1 deletions
Show diff stats
script/start-fitnesse.sh
... | ... | @@ -12,8 +12,9 @@ fi; |
12 | 12 | |
13 | 13 | . ${SCRIPTDIR}/amda-kernel-env |
14 | 14 | |
15 | -export PATH="${SCRIPTDIR}/../build/Debug/bin:$PATH" | |
15 | +export PATH="${SCRIPTDIR}/../build/Debug/bin:${SCRIPTDIR}/../build/bin:$PATH" | |
16 | 16 | TESTS_DIR="${SCRIPTDIR}/../test" |
17 | 17 | FITNESSE_JAR="${FITNESSE_ROOT}/fitnesse-standalone.jar" |
18 | +cd ${SCRIPTDIR}/.. | |
18 | 19 | nohup java -Xmx1024m -jar "$FITNESSE_JAR" -d "$TESTS_DIR" -e 0 -p ${FITNESSE_PORT} & |
19 | 20 | exit 0 | ... | ... |