aboutsummaryrefslogtreecommitdiffstats
path: root/debian/debian.deps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'debian/debian.deps.sh')
-rwxr-xr-xdebian/debian.deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/debian.deps.sh b/debian/debian.deps.sh
index 797b437..4ad0088 100755
--- a/debian/debian.deps.sh
+++ b/debian/debian.deps.sh
@@ -6,9 +6,9 @@ list_file="$1"
loop_first=1
for pkg in `cat "${list_file}"`; do
if [ "${loop_first}" = "1" ]; then
- printf "%s" "${pkg}"
+ printf '%s' "${pkg}"
else
- printf ", %s" "${pkg}"
+ printf ', %s' "${pkg}"
fi
loop_first=0
done