diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-10-22 21:55:40 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-10-22 21:55:40 +1100 |
commit | 4e707c6b536f7c7ddaedaeb4dae84e3f898426e5 (patch) | |
tree | 41e2cdf2f83aff2d43d06d8b2070b1c7e521c01c | |
parent | 8a38aa5fba57ec1c8f5d7636912a69afc7cc5b2a (diff) | |
download | facter-4e707c6b536f7c7ddaedaeb4dae84e3f898426e5.tar.gz facter-4e707c6b536f7c7ddaedaeb4dae84e3f898426e5.tar.xz facter-4e707c6b536f7c7ddaedaeb4dae84e3f898426e5.zip |
Fixed #1650 - OS X package creation script should be more selective about cleaning out prior versions
-rw-r--r-- | CHANGELOG | 5 | ||||
-rwxr-xr-x | conf/osx/preflight | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,7 @@ -1.5.x: +1.5.3: + Fixed #1650 - OS X package creation script should be more selective + about cleaning out prior versions + Added Ubuntu to a variety of confines Fixed #1619 - Applying patch by seanmil, adding support for SLES. diff --git a/conf/osx/preflight b/conf/osx/preflight index 400a261..9b2c07e 100755 --- a/conf/osx/preflight +++ b/conf/osx/preflight @@ -8,4 +8,5 @@ # ${3} is the destination volume so that this works correctly # when being installed to volumes other than the current OS. -rm -Rf "${3}{SITELIBDIR}/facter*" +/bin/rm -Rf "${3}{SITELIBDIR}/facter" +/bin/rm -Rf "${3}{SITELIBDIR/facter.rb" |