3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: r-dt: Fix install location of minified JavaScript.

Reported-by: Marcel Schilling <marcel.schilling@uni-luebeck.de>

* gnu/packages/statistics.scm (r-dt)[arguments]: Append "/js" directory to
installation location of minified JavaScript.
This commit is contained in:
Ricardo Wurmus 2021-10-05 22:28:20 +02:00
parent baa7536c49
commit 12d56be31c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3531,7 +3531,7 @@ using the multicore functionality of the parallel package.")
((url hash dir)
(let* ((input (string-append "js:" (basename url)))
(source (assoc-ref inputs input))
(target (string-append dir "/"
(target (string-append dir "/js/"
(basename url ".js")
".min.js")))
(mkdir-p dir)