Skip to content

Commit 203a01c

Browse files
authored
Merge pull request #219 from marcoroth/unify-dev-script
Unify `bin/dev` script with other js/css installers
2 parents a5bbf6e + 7612630 commit 203a01c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/install/dev

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

3-
if ! command -v foreman &> /dev/null
4-
then
3+
if ! gem list foreman -i --silent; then
54
echo "Installing foreman..."
65
gem install foreman
76
fi
87

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

0 commit comments

Comments
 (0)