summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorNigel Kersten <nigelk@google.com>2009-10-07 07:03:42 -0700
committerPaul Nasrat <pnasrat@googlemail.com>2009-10-07 15:17:19 +0100
commit5b95a128f369615cb7d7c08f8a9047cc9b44d3f3 (patch)
tree643f7e0920395c0bf7403caba0d84dd8614b0bf8 /conf
parent9aef69edabae9866877c669bde290f22a7bb1010 (diff)
downloadfacter-5b95a128f369615cb7d7c08f8a9047cc9b44d3f3.tar.gz
facter-5b95a128f369615cb7d7c08f8a9047cc9b44d3f3.tar.xz
facter-5b95a128f369615cb7d7c08f8a9047cc9b44d3f3.zip
Fixes #2704. Problem finding install.rb three levels up
Diffstat (limited to 'conf')
-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 768380e..623eb31 100755
--- a/conf/osx/createpackage.sh
+++ b/conf/osx/createpackage.sh
@@ -37,7 +37,7 @@ function find_installer() {
elif [ -f "../${INSTALLRB}" ]; then
installer="$(pwd)/../${INSTALLRB}"
elif [ -f "../../${INSTALLRB}" ]; then
- installer="$(pwd)/../${INSTALLRB}"
+ installer="$(pwd)/../../${INSTALLRB}"
else
installer=""
fi