diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-04-20 21:50:58 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-04-20 22:56:14 -0400 |
commit | d958a33c1f0e11b770481a9188cbf75cc3bfd0a5 (patch) | |
tree | b5ae47096365863eb26a77a89af0e36b48b5ca03 /src/repo-diff | |
parent | 2d1ae58285ade402260bf5d5a4dbf42aba027fc5 (diff) |
Quote unquoted strings that should probably be quoted.
These were found with the help of shellcheck.
Nothing more complicated than wrapping a variable in double quotes has been
done.
Diffstat (limited to 'src/repo-diff')
-rwxr-xr-x | src/repo-diff | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/repo-diff b/src/repo-diff index c875dce..10b617c 100755 --- a/src/repo-diff +++ b/src/repo-diff @@ -2,6 +2,7 @@ # Shows a diff between repo databases # Copyright (C) 2013 Nicolás Reynolds <fauno@parabola.nu> +# Copyright (C) 2017 Luke Shumaker <lukeshu@sbcglobal.net> # # License: GNU GPLv3+ # @@ -34,7 +35,7 @@ if test $# -eq 0; then exit 0 fi -b() { bsdtar ztf $1 | cut -d "/" -f1 | sort -u ; } +b() { bsdtar ztf "$1" | cut -d "/" -f1 | sort -u ; } n() { echo "$1".db | tr "/" "-"; } # hopefully simple way to convert |