From c8ba49c6a14caff130bd64c594639bff67015b25 Mon Sep 17 00:00:00 2001
From: Lukas Fleischer <archlinux@cryptocrack.de>
Date: Wed, 10 Aug 2011 15:17:58 +0200
Subject: [PATCH] commitpkg: Proper quoting in version control checks

Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
---
 commitpkg | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/commitpkg b/commitpkg
index 9856df1..999c35f 100755
--- a/commitpkg
+++ b/commitpkg
@@ -78,9 +78,9 @@ case "$repo" in
 esac
 
 # check if all local source files are under version control
-for s in ${source[@]}; do
-	echo $s | grep -Fvq '://' && \
-	svn status $s | grep -q '^\?' && \
+for s in "${source[@]}"; do
+	echo "$s" | grep -Fvq '://' && \
+	svn status "$s" | grep -q '^\?' && \
 	abort "$s is not under version control"
 done
 
@@ -90,7 +90,7 @@ for i in 'changelog' 'install'; do
 	for file in $filelist; do
 		# evaluate any bash variables used
 		eval file=${file}
-		if svn status ${file} | grep -q '^\?'; then
+		if svn status "${file}" | grep -q '^\?'; then
 			abort "${file} is not under version control"
 		fi
 	done
-- 
GitLab