index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'run-test')
-rwxr-xr-x | run-test | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -1,11 +1,5 @@ #!/usr/bin/env bash NPM_COMMAND="npm run test:integ" -CONTAINER_NAME=$(docker container ls --all --filter=ancestor=btroops --format "{{.Names}}") -if [[ -z "${CONTAINER_NAME}" ]] -then - docker run --rm -it -v $PWD:/usr/src/app btroops $NPM_COMMAND -else - docker exec -it $CONTAINER_NAME $NPM_COMMAND -fi +docker run --rm --init -it -v $PWD:/usr/src/app btroops $NPM_COMMAND |