From 3940dfb3082789a5a800ec2c131ee206ed3235ca Mon Sep 17 00:00:00 2001 From: James Turnbull Date: Wed, 7 Oct 2009 10:59:26 +1100 Subject: Fixed #2674 - createpackage.sh: problem finding install.rb Thanks to Allan Marcus for the fix. --- conf/osx/createpackage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit