Skip to content

Commit

Permalink
fix for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 14, 2025
1 parent 088ef50 commit 5be28a2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .evergreen/docker/rhel8/base-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#!/usr/bin/env bash
set -eu

# Remove the virtual env.
rm -rf $DRIVERS_TOOLS/.evergreen/venv || true

# Start the server.
cd $DRIVERS_TOOLS
make run-server
Expand Down
5 changes: 4 additions & 1 deletion .evergreen/docker/ubuntu20.04/base-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env bash
set -eu
set -eux

# Remove the virtual env.
rm -rf $DRIVERS_TOOLS/.evergreen/venv || true

# Start the server.
cd $DRIVERS_TOOLS
Expand Down

0 comments on commit 5be28a2

Please sign in to comment.