Skip to content

Commit 738a7be

Browse files
authored
fix error running under Alpine
env: can't execute 'bash': No such file or directory use sh as lowest common denominator
1 parent ba14f99 commit 738a7be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/install/dev

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
22

33
if ! gem list foreman -i --silent; then
44
echo "Installing foreman..."
55
gem install foreman
66
fi
77

8-
foreman start -f Procfile.dev "$@"
8+
exec foreman start -f Procfile.dev "$@"

0 commit comments

Comments
 (0)