From 85573e8ad115f3b66c052ffa45d7c41ee6f24eed Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Sat, 31 Mar 2007 19:05:28 +0000 Subject: 23255: fix 23253 better. --- Completion/Unix/Command/_module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Completion') diff --git a/Completion/Unix/Command/_module b/Completion/Unix/Command/_module index 06db1550b..6e00ccf05 100644 --- a/Completion/Unix/Command/_module +++ b/Completion/Unix/Command/_module @@ -83,7 +83,7 @@ _module() # Fills the available modules cache _module_available_modules() { - if (( [[ -n $MODULEPATH ]] && [[ ${+_available_modules} -eq 0 ]] )); + if [[ -n $MODULEPATH ]] && [[ ${+_available_modules} -eq 0 ]] then _available_modules=($(find ${(e)=MODULEPATH//:/ } -xtype f -print 2>/dev/null | grep -v \.version | sed -e 's,\('${${(e)=MODULEPATH//:/\/\\\|}%\\\|}'\),,g' -e 's,^/*,,g')) fi -- cgit 1.4.1