aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.bashrc_distr
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-08-17 22:58:15 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2016-08-17 22:58:15 +0200
commit35d858363a88f1d985ba36cf0e18de6ab0ccfcd1 (patch)
tree611e856f77effc512aaa317137039bcb9f49060e /.bashrc_distr
parentmove Windows-specific stuff to .appdata/ (diff)
downloadlinux-home-35d858363a88f1d985ba36cf0e18de6ab0ccfcd1.tar.gz
linux-home-35d858363a88f1d985ba36cf0e18de6ab0ccfcd1.zip
move .bashrc_* to .bash_utils/
Diffstat (limited to '.bashrc_distr')
-rw-r--r--.bashrc_distr29
1 files changed, 0 insertions, 29 deletions
diff --git a/.bashrc_distr b/.bashrc_distr
deleted file mode 100644
index 8e7b84c..0000000
--- a/.bashrc_distr
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env bash
-
-# Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is part of the "Cygwin configuration files" project.
-# For details, see https://github.com/egor-tensin/cygwin-home.
-# Distributed under the MIT License.
-
-readonly checksums_path='sha1sums.txt'
-
-update_checksums() {
- sha1sum -- "$@" > "$checksums_path"
-}
-
-update_checksums_distr() (
- set -o errexit -o nounset -o pipefail
-
- local -a paths
- local path
-
- while IFS= read -d '' -r path; do
- paths+=("$path")
- done < <( find . -type f -\( -iname '*.exe' -o -iname '*.iso' -\) -print0 )
-
- update_checksums "${paths[@]+"${paths[@]}"}"
-)
-
-verify_checksums() {
- sha1sum --check "$checksums_path"
-}