diff options
-rwxr-xr-x | src/fullpkg/fullpkg-build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fullpkg/fullpkg-build b/src/fullpkg/fullpkg-build index 8f01369..e922877 100755 --- a/src/fullpkg/fullpkg-build +++ b/src/fullpkg/fullpkg-build @@ -21,7 +21,7 @@ list_pkgs() { msg="$2" local pkgs=($(grep "$1:" $build_dir/log)) && { msg "$2" - echo ${pkgs[@]} | tr " " "\n" | cut -d: -f2 + printf '%s\n' "${pkgs[@]}" | cut -d: -f2 } } |