diff options
Diffstat (limited to 'debian/debian.deps.sh')
-rwxr-xr-x | debian/debian.deps.sh | 4 |
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 |