diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-11-07 05:54:48 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-11-07 05:54:48 +0300 |
commit | 40da44843a9ca4e212c2b48027b0f9e98666a57c (patch) | |
tree | 1ef55beb633d3a509efd6acebc83a49f1cfc8d12 /%HOME%/.bash_utils | |
parent | bugfix & code style (diff) | |
download | linux-home-40da44843a9ca4e212c2b48027b0f9e98666a57c.tar.gz linux-home-40da44843a9ca4e212c2b48027b0f9e98666a57c.zip |
bugfix
Diffstat (limited to '%HOME%/.bash_utils')
-rw-r--r-- | %HOME%/.bash_utils/distr.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/%HOME%/.bash_utils/distr.sh b/%HOME%/.bash_utils/distr.sh index 252f86c..e83cb88 100644 --- a/%HOME%/.bash_utils/distr.sh +++ b/%HOME%/.bash_utils/distr.sh @@ -30,7 +30,7 @@ sums_list_paths() ( esac done - [ -f "$sums_path" ] || return 0 + [ -e "$sums_path" ] || return 0 local -a paths=() |