mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
utils: 'wrap-script' doesn't pass a non-literal string to 'format'.
Reported by Vagrant Cascadian <vagrant@debian.org> in <https://bugs.gnu.org/44626>. * guix/build/utils.scm (wrap-script): Use 'display' instead of passing a non-literal string to 'format'.
This commit is contained in:
parent
8d263ff254
commit
55fb5e5d21
1 changed files with 1 additions and 1 deletions
|
@ -1347,7 +1347,7 @@ (define update-env
|
|||
(lambda ()
|
||||
(call-with-ascii-input-file prog
|
||||
(lambda (p)
|
||||
(format out header)
|
||||
(display header out)
|
||||
(dump-port p out)
|
||||
(close out)
|
||||
(chmod template mode)
|
||||
|
|
Loading…
Reference in a new issue