From: Ron Koenderink Date: Sat, 9 Aug 2008 20:59:59 +0000 (-0600) Subject: Add change directory before starting server tests X-Git-Tag: v4.3.17~121 X-Git-Url: http://git.pond.sub.org/?p=empserver;a=commitdiff_plain;h=931f6db90d3f357d4fe2e342dd3d44bc508b12fe Add change directory before starting server tests The server tests would fail if the previous steps were skippped. --- diff --git a/src/scripts/nightly/nightlybuild.sh b/src/scripts/nightly/nightlybuild.sh index bc0a8803c..21fd2e3aa 100755 --- a/src/scripts/nightly/nightlybuild.sh +++ b/src/scripts/nightly/nightlybuild.sh @@ -207,6 +207,7 @@ esac # END BUILD # +cd "${BOXDIR}/${WORKDIR}" || err "Could not cd to ${BOXDIR}/${WORKDIR}" # Try to run startup utilities for onetime in 1 do @@ -218,7 +219,7 @@ do *GENERATE*) ;; *) - if [ -d ../emp4 -a -d ../emp4/bin -a -d ../emp4/sbin -a -d ../emp4/var/empire ] + if [ -d emp4 -a -d emp4/bin -a -d emp4/sbin -a -d emp4/var/empire ] then echo "Directory structure is ok" else @@ -226,14 +227,14 @@ do break fi - cd ../emp4/bin || err "Could not cd to ../emp4/bin" + cd emp4/bin || err "Could not cd to emp4/bin" echo "Determining type of files in bin directory" file * echo "Done (file *)." echo "" - cd ../../emp4/sbin || err "Could not cd to ../../emp4/sbin" + cd ../sbin || err "Could not cd to ../sbin" echo "Determining type of files in sbin directory" file *