diff options
Diffstat (limited to 'bash/config.sh')
-rw-r--r-- | bash/config.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bash/config.sh b/bash/config.sh index 26ef085..ac9f7c2 100644 --- a/bash/config.sh +++ b/bash/config.sh @@ -7,8 +7,8 @@ # If not running interactively, don't do anything case $- in - *i*) ;; - *) return;; + *i*) ;; + *) return;; esac # don't put duplicate linesin the history. # See bash(1) for more options @@ -28,5 +28,5 @@ shopt -s checkwinsize # If set, the pattern "**" used in a pathname expansion context will # match all files and zero or more directories and subdirectories. isLinux && { - shopt -s globstar + shopt -s globstar } |