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

Commit 1cc42ad

Browse files
Merge pull request #3 from cleverer/rubymine
Make entrypoint RubyMine compatible
2 parents 1c159fd + a8a50fe commit 1cc42ad

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
if [ ! -f "./Wagonfile" ]; then
66
echo "⚙ Creating Wagonfile from defaults because it doesn't exist yet"
@@ -38,4 +38,4 @@ fi
3838
echo "➡️ Handing control over to '$*''"
3939

4040
# shellcheck disable=SC2068
41-
exec bundle exec $@
41+
exec bundle exec "$@"

0 commit comments

Comments
 (0)