add missing quotes to a variable - dossier - console collection manager
DIR Log
DIR Files
DIR Refs
DIR Tags
DIR README
DIR LICENSE
---
DIR commit 5b178df77317dffde3e401fce4965076b96d6553
DIR parent ec38598e22c572e62fbd883be3277c45cfc22fe4
HTML Author: Solene Rapenne <solene@perso.pw>
Date: Thu, 2 Aug 2018 13:26:48 +0200
add missing quotes to a variable
Diffstat:
M dossier | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/dossier b/dossier
@@ -52,7 +52,7 @@ show_attributes_values() {
cd "$REPO"
for attribute in *
do
- printf "%s:\n" $attribute
+ printf "%s:\n" "$attribute"
awk '{ print }' "${attribute}"/* | sort | uniq | sed 's/^/ /'
done
exit 0