From fbef7def80a0ed17db15767976ed913e0cbd671b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Tue, 19 May 2015 13:47:17 +0800 Subject: [PATCH] fall through does not support in bash 3.4 --- bash/bashrc/package.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/bashrc/package.sh b/bash/bashrc/package.sh index de1a3d5..f69e5a5 100644 --- a/bash/bashrc/package.sh +++ b/bash/bashrc/package.sh @@ -4,8 +4,8 @@ case $( uname -a | awk '{ print $1 }' ) in Darwin) # although this is deprecated, Mac still use it PERM="+111" ;; - Linux) ;& - CYGWIN~) ;& + # Linux) ;& // Fall through does not support in OS X + # CYGWIN~) ;& *) PERM="/111" ;;