Skip to content

Commit 283d799

Browse files
committed
Fix the output, add updated dates
1 parent 8af6550 commit 283d799

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

content-footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<center style="font-size: x-small">
33

4-
<p>&copy; Paul Nathan 2013,2014</p>
4+
<p>&copy; Paul Nathan & others 2013,2014,2015</p>
55
<p><a href="https://github.com/pnathan/articulate-common-lisp"> Github source</a> - contributions welcome!</p>
66

77
</center>

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%
33
%
44

5-
how to write Common Lisp in 2014
5+
how to write Common Lisp in 2015
66

77
an initiation manual for the uninitiated
88

make.lisp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,13 @@
166166
(write-sequence (build-banner filename (find-file-prefixes (ls)))
167167
stream))
168168

169-
(let ((error? (with-output-to-string (s)
170-
(external-program:run
171-
"pandoc"
172-
(generate-command filename)
173-
:error s))))
174-
(when error?
175-
(format t "~&Oh no, a Thing appeared and ate the pandoc generator, leaving this note - ~a~%" error?))))
169+
(let ((error? (with-output-to-string (s)
170+
(external-program:run
171+
"pandoc"
172+
(generate-command filename)
173+
:error s))))
174+
(when (string/= "" error?)
175+
(format t "~&Oh no, a Thing appeared and ate the pandoc generator, leaving this note - ~a~%" error?))))
176176

177177

178178
(defun build-files ()
@@ -189,7 +189,7 @@
189189
"~"
190190
file
191191
":")))))
192-
(external-program:run "cp" args :error *standard-output*))))
192+
(external-program:run "mv" args :error *standard-output*))))
193193

194194
(format t "~&final reticulation...~&")
195195
;; Get the static content over.

0 commit comments

Comments
 (0)