diff options
author | David Thompson <dthompson2@worcester.edu> | 2021-09-28 08:11:50 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2021-09-28 08:11:50 -0400 |
commit | 7b43d56367d18cfb64ddc73dc7a9f31446fe7c9c (patch) | |
tree | 9abec54c880ca79f9a3bc76f2b6d0e9a56d03f67 | |
parent | 700bba28dc30ae8597abaf95d3faa303e1ac7a07 (diff) |
cli: bundle: Remove commented code.
-rw-r--r-- | chickadee/cli/bundle.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/chickadee/cli/bundle.scm b/chickadee/cli/bundle.scm index 8cf819e..3a3fe68 100644 --- a/chickadee/cli/bundle.scm +++ b/chickadee/cli/bundle.scm @@ -232,14 +232,9 @@ (let ((v (string-append (major-version) ".0"))) (for-each (match-lambda ((suffix source compiled) - (let (;; (scm-dest (string-append destdir "/share/guile/" v "/" - ;; suffix)) - (go-dest (string-append destdir "/lib/guile/" v "/ccache/" + (let ((go-dest (string-append destdir "/lib/guile/" v "/ccache/" (scm->go suffix)))) - ;; (mkdir-p (dirname scm-dest)) (mkdir-p (dirname go-dest)) - ;;(format #t "copy ~a → ~a~%" source scm-dest) - ;;(copy-file source scm-dest) (when compiled (format #t "copy ~a → ~a~%" compiled go-dest) (copy-file compiled go-dest))))) |