aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-11-26 22:56:03 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-11-26 22:56:03 +0300
commitda0f03b33928a5cc3ca1465828a5374252c2d8ea (patch)
treeb5dc22f42006a94fdd3bf14e560aee0389a55c20
parentadd sums_update_all (diff)
downloadlinux-home-da0f03b33928a5cc3ca1465828a5374252c2d8ea.tar.gz
linux-home-da0f03b33928a5cc3ca1465828a5374252c2d8ea.zip
sums_update_all: exclude sha1sums.txt
-rw-r--r--%HOME%/.bash_utils/distr.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/%HOME%/.bash_utils/distr.sh b/%HOME%/.bash_utils/distr.sh
index f51ca67..8baba56 100644
--- a/%HOME%/.bash_utils/distr.sh
+++ b/%HOME%/.bash_utils/distr.sh
@@ -73,7 +73,7 @@ sums_update_all() (
while IFS= read -d '' -r path; do
paths+=("$path")
- done < <( find . -type f -printf '%P\0' )
+ done < <( find . -type f -\! -name "$sums_path" -printf '%P\0' )
sums_update ${paths[@]+"${paths[@]}"}
)
@@ -92,5 +92,5 @@ sums_update_distr() (
)
sums_verify() {
- sha1sum --check -- "$sums_path"
+ sha1sum --check --quiet -- "$sums_path"
}