From aee9412b4bad788125e513c9d455283f14ed84de Mon Sep 17 00:00:00 2001 From: Mehdi Abaakouk Date: Mon, 30 Sep 2013 11:48:00 +0000 Subject: [PATCH] Allow openrc to be loaded in zsh This fix the test then detect OSX in GetOSVersion that break support of zsh. Fixes bug #1233118 Change-Id: If243fbe59f8f08041327057425018d7ae0d13ab2 --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 83826f9327..d9445fe6e7 100644 --- a/functions +++ b/functions @@ -364,7 +364,7 @@ function get_packages() { # GetOSVersion GetOSVersion() { # Figure out which vendor we are - if [[ -n "`which sw_vers 2>/dev/null`" ]]; then + if [[ -x "`which sw_vers 2>/dev/null`" ]]; then # OS/X os_VENDOR=`sw_vers -productName` os_RELEASE=`sw_vers -productVersion`