From 1a631eb326181f3c53e421ff1b887b3e817f5b20 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 24 Oct 2021 11:50:37 -0400 Subject: cli: bundle: Fix tar command arguments. --- chickadee/cli/bundle.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chickadee/cli/bundle.scm b/chickadee/cli/bundle.scm index 0e3ad3b..9d66286 100644 --- a/chickadee/cli/bundle.scm +++ b/chickadee/cli/bundle.scm @@ -377,7 +377,7 @@ exec bin/guile ~a (install-libraries destdir libraries (scan-for-libraries libdirs)) (install-modules destdir) (format #t "create ~a~%" archive) - (unless (zero? (system* "tar" "czf" archive "-C" tmpdir "chickadee-bundle")) + (unless (zero? (system* "tar" "czf" archive "-C" tmpdir name)) (format (current-error-port) "failed to create ~a archive~%" archive) (exit 1)) (delete-file-recursively tmpdir))) -- cgit v1.2.3