diff options
-rwxr-xr-x | localdebpool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/localdebpool b/localdebpool index 68a107b..b2aba22 100755 --- a/localdebpool +++ b/localdebpool @@ -236,7 +236,7 @@ done # [ -n "$DEBUG" ] || printf "Creating/updating package sections:" for section in $batchsections; do - [ -n "$DEBUG" ] || printf " $section" + [ -n "$DEBUG" ] || printf " %s" "$section" dists="$(distsfromprvgrpdirs "$PRVBASE/sections/$section")" for dist in $dists; do if [ -n "$DEBUG" ]; then @@ -270,7 +270,7 @@ debugprint "All sections: \"$allsections\"" "2" dists="$(distsfromprvgrpdirs "$PRVBASE/sections")" dists="$(compactlist $dists)" for dist in $dists; do - [ -n "$DEBUG" ] || printf " $dist" + [ -n "$DEBUG" ] || printf " %s" "$dist" genrelease "$dist" ${allsections} done [ -n "$DEBUG" ] || echo " - Done!" |