diff options
-rw-r--r-- | guix/scripts/package.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index d4309094e8..3947159c2e 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -178,7 +178,7 @@ packages that will/would be installed and removed." (match remove ((($ <manifest-entry> name version output path _) ..1) (let ((len (length name)) - (remove (map (cut format #f " ~a-~a\t~a\t~a" <> <> <> <>) + (remove (map (cut format #f " ~a-~a\t~a\t~a" <> <> <> <>) name version output path))) (if dry-run? (format (current-error-port) |