From 738a7bec53387401248c2dccab1c9825e28e8cef Mon Sep 17 00:00:00 2001 From: eddie cianci Date: Thu, 28 Jul 2022 14:53:53 -0400 Subject: [PATCH] fix error running under Alpine env: can't execute 'bash': No such file or directory use sh as lowest common denominator --- lib/install/dev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/install/dev b/lib/install/dev index 60096c5..74ade16 100755 --- a/lib/install/dev +++ b/lib/install/dev @@ -1,8 +1,8 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh if ! gem list foreman -i --silent; then echo "Installing foreman..." gem install foreman fi -foreman start -f Procfile.dev "$@" +exec foreman start -f Procfile.dev "$@"