From 931f6db90d3f357d4fe2e342dd3d44bc508b12fe Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sat, 9 Aug 2008 14:59:59 -0600 Subject: [PATCH] Add change directory before starting server tests The server tests would fail if the previous steps were skippped. --- src/scripts/nightly/nightlybuild.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 * -- 2.43.0