From 6a44dd3fd3f3b227ea7fbe9d35556383449fe15c Mon Sep 17 00:00:00 2001 From: Jeremy Evans Date: Fri, 14 Sep 2012 17:12:52 -0700 Subject: [PATCH] Use /bin/sh instead of bash for foreman-runner /bin/sh should be installed by default on all unix machines, bash is not necessarily installed on all machines. --- bin/foreman-runner | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/foreman-runner b/bin/foreman-runner index 9fef8114..77eed2ad 100755 --- a/bin/foreman-runner +++ b/bin/foreman-runner @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh # #/ Usage: foreman-runner [-d ] [-p] [...] #/ @@ -32,9 +32,9 @@ shift $((OPTIND-1)) [ -z "$1" ] && usage -if [ "$read_profile" == "1" ]; then +if [ "$read_profile" = "1" ]; then if [ -f .profile ]; then - source .profile + . .profile fi fi