diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-10-07 10:59:26 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-10-07 10:59:26 +1100 |
commit | 3940dfb3082789a5a800ec2c131ee206ed3235ca (patch) | |
tree | 02b88bc05312b6764ebac4185b09d5c2d7d358c2 | |
parent | 3b548f412a2eed36fd06ceb5d23039c1e075de0f (diff) | |
download | puppet-3940dfb3082789a5a800ec2c131ee206ed3235ca.tar.gz puppet-3940dfb3082789a5a800ec2c131ee206ed3235ca.tar.xz puppet-3940dfb3082789a5a800ec2c131ee206ed3235ca.zip |
Fixed #2674 - createpackage.sh: problem finding install.rb
Thanks to Allan Marcus for the fix.
-rwxr-xr-x | conf/osx/createpackage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/osx/createpackage.sh b/conf/osx/createpackage.sh index 2023839a0..d27ef0e7a 100755 --- a/conf/osx/createpackage.sh +++ b/conf/osx/createpackage.sh @@ -38,7 +38,7 @@ function find_installer() { elif [ -f "../${INSTALLRB}" ]; then installer="$(pwd)/../${INSTALLRB}" elif [ -f "../../${INSTALLRB}" ]; then - installer="$(pwd)/../${INSTALLRB}" + installer="$(pwd)/../../${INSTALLRB}" else installer="" fi |