Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.

Commit a8a50fe

Browse files
committed
Make entrypoint RubyMine compatible.
1 parent 5d6f00f commit a8a50fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.docker/entrypoint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set +e
3+
set -e
44

55
echo "⚙️ Testing DB connection"
66
timeout 300s waitfortcp "${RAILS_DB_HOST-db}" "${RAILS_DB_PORT-3306}"
@@ -29,4 +29,4 @@ fi
2929
echo "➡️ Handing control over to '$*''"
3030

3131
# shellcheck disable=SC2068
32-
exec bundle exec $@
32+
exec bundle exec "$@"

0 commit comments

Comments
 (0)