Skip to content
Snippets Groups Projects
Commit 35517f27 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix missing comma in extract-tagged-asdf.

parent 4a120b68
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ Use at a given tag, put it under build/asdf-${tag}.lisp"
(git `(show (,tag ":asdf.lisp") (> ,file))))
(t
(ensure-directories-exist (pn "build/old/build/"))
(run `(pipe (git archive ,tag) (tar "xfC" - (pn "build/old/"))))
(run `(pipe (git archive ,tag) (tar "xfC" - ,(pn "build/old/"))))
(run `(make) :directory (pn "build/old/"))
(rename-file-overwriting-target (pn "build/old/build/asdf.lisp") file))))))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment