aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/hasCopyright.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/hasCopyright.sh b/scripts/hasCopyright.sh
index a16c2f18ad..d9a96e26ad 100755
--- a/scripts/hasCopyright.sh
+++ b/scripts/hasCopyright.sh
@@ -7,7 +7,7 @@
# Sample usage:
# find . -type f -name \*.cpp -o -name \*.h | xargs ~/bin/hasCopyright.sh
-for i in $@ ; do
+for i in "$@" ; do
if test -f "$i" && test -s "$i" ; then
if head -n 35 "$1" | grep "qt-info@nokia.com" > /dev/null 2>&1 ; then
echo "$i: OLD EMAIL IN USE!"