diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-10-24 11:50:37 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-10-24 11:50:37 -0400 |
commit | 1a631eb326181f3c53e421ff1b887b3e817f5b20 (patch) | |
tree | 5d5ccd403151439d8fc439e668506697cc112c5d | |
parent | 7837d810d7859fc595aac9b98a59e7b6955ca991 (diff) |
cli: bundle: Fix tar command arguments.
-rw-r--r-- | chickadee/cli/bundle.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |