commit fbef7def80a0ed17db15767976ed913e0cbd671b
| author | 斟酌 鵬兄 <tgckpg@gmail.com> |
| date | 2015-05-19T05:47:17Z |
| subject | fall through does not support in bash 3.4 |
commit fbef7def80a0ed17db15767976ed913e0cbd671b
Author: 斟酌 鵬兄 <tgckpg@gmail.com>
Date: 2015-05-19T05:47:17Z
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"
;;