Skip to content

Commit bdf6701

Browse files
committed
Install foreman globally on the system if it has not been already
1 parent fb71c2d commit bdf6701

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/install/dev

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

3+
if ! command -v foreman &> /dev/null
4+
then
5+
echo "Installing foreman..."
6+
gem install foreman
7+
fi
8+
39
foreman start -f Procfile.dev

0 commit comments

Comments
 (0)