summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2019-07-25 17:05:10 +0200
committerEkaitz Zárraga <ekaitz.zarraga@protonmail.com>2019-07-25 17:05:10 +0200
commit2bec5923f54dc8fc0d280a27a6860304eb67a5ef (patch)
tree193dc0fbeb9e065728f19d0db95dcc1a30fa1e1b
parentcfd4822f28e25ec775b096a318ce43a9fba6d73e (diff)
Remove unneeded append
-rw-r--r--pandoc.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/pandoc.scm b/pandoc.scm
index 39a1624..56a58bc 100644
--- a/pandoc.scm
+++ b/pandoc.scm
@@ -24,7 +24,7 @@
%standard-phases
(replace 'install
(lambda _
- (copy-recursively "." (string-append %output))))
+ (copy-recursively "." %output)))
(delete 'build)
(delete 'configure))))
(synopsis "A universal document converter")