aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-10-27 06:17:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-10-27 06:17:11 +0300
commit2de588137ee4741b7911ef6ee891c56d2330a9d2 (patch)
treed678ebaed5b9c30394266eb274b5a9d4270a3384 /%HOME%
parent.gitconfig: add alias.xx & remove obsolete entries (diff)
downloadlinux-home-2de588137ee4741b7911ef6ee891c56d2330a9d2.tar.gz
linux-home-2de588137ee4741b7911ef6ee891c56d2330a9d2.zip
list_checksums_paths: bugfix
Diffstat (limited to '%HOME%')
-rw-r--r--%HOME%/.bash_utils/distr.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/%HOME%/.bash_utils/distr.sh b/%HOME%/.bash_utils/distr.sh
index 25407fb..a9f746a 100644
--- a/%HOME%/.bash_utils/distr.sh
+++ b/%HOME%/.bash_utils/distr.sh
@@ -13,7 +13,7 @@ list_checksums_paths() (
if [ -f "$checksums_path" ]; then
local path
while IFS= read -r path; do
- printf "$path"'\0'
+ printf '%s\0' "$path"
done < <( sed --binary 's/^\\\?[[:alnum:]]\+ [ *]//' "$checksums_path" )
fi
)