Skip to content

Commit

Permalink
Merge pull request #246 from jeremyevans/patch-1
Browse files Browse the repository at this point in the history
Don't have foreman-runner depend on bash
  • Loading branch information
ddollar committed Sep 15, 2012
2 parents 6c04dab + 6a44dd3 commit 6b77ca1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/foreman-runner
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
#
#/ Usage: foreman-runner [-d <dir>] [-p] <command> [<args>...]
#/
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 6b77ca1

Please sign in to comment.