Change directory to src.

This commit is contained in:
SamTV12345 2024-01-20 18:32:06 +01:00
parent cfaee1a1a7
commit c4fa093a1f
4 changed files with 8 additions and 8 deletions

View file

@ -11,8 +11,8 @@ MY_DIR=$(try cd "${0%/*}" && try pwd -P) || exit 1
try cd "${MY_DIR}/../../../.."
log "Assuming src/bin/installDeps.sh has already been run"
npm run dev --experimental-worker "${@}" &
ep_pid=$!
( cd src && npm run dev --experimental-worker "${@}" &
ep_pid=$!)
log "Waiting for Etherpad to accept connections (http://localhost:9001)..."
connected=false

View file

@ -11,8 +11,8 @@ MY_DIR=$(try cd "${0%/*}" && try pwd -P) || exit 1
try cd "${MY_DIR}/../../../.."
log "Assuming src/bin/installDeps.sh has already been run"
npm run dev --experimental-worker "${@}" &
ep_pid=$!
(cd src && npm run dev --experimental-worker "${@}" &
ep_pid=$!)
log "Waiting for Etherpad to accept connections (http://localhost:9001)..."
connected=false

View file

@ -19,8 +19,8 @@ s!"points":[^,]*!"points": 1000!
log "Deprecation notice: runnerBackend.sh - Please use: cd src && npm test"
log "Assuming src/bin/installDeps.sh has already been run"
npm run dev "${@}" &
ep_pid=$!
(cd src && npm run dev "${@}" &
ep_pid=$!)
log "Waiting for Etherpad to accept connections (http://localhost:9001)..."
connected=false

View file

@ -24,8 +24,8 @@ s!"points":[^,]*!"points": 1000!
' settings.json.template >settings.json
log "Assuming src/bin/installDeps.sh has already been run"
npm run dev &
ep_pid=$!
(cd src && npm run dev &
ep_pid=$!)
log "Waiting for Etherpad to accept connections (http://localhost:9001)..."
connected=false