summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-10-07 10:59:26 +1100
committerJames Turnbull <james@lovedthanlost.net>2009-10-07 10:59:26 +1100
commit3940dfb3082789a5a800ec2c131ee206ed3235ca (patch)
tree02b88bc05312b6764ebac4185b09d5c2d7d358c2
parent3b548f412a2eed36fd06ceb5d23039c1e075de0f (diff)
downloadpuppet-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-xconf/osx/createpackage.sh2
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