Skip to content

Commit

Permalink
Run console non-interactively on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Jul 11, 2024
1 parent 91e0b78 commit 3f06c63
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/console.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ set -ex

ARGS=$*

docker run --rm -ti docker-taudem $ARGS
if [[ -z $CI ]]; then
docker run --rm -ti docker-taudem $ARGS
else
# Run in non-interactive mode in CI
docker run --rm docker-taudem $ARGS
fi

0 comments on commit 3f06c63

Please sign in to comment.