We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a6395b commit 6453e6eCopy full SHA for 6453e6e
_ref/generate.arc
_ref/generate.sh
@@ -5,14 +5,23 @@ exec racket -f $0
5
6
(require racket/base)
7
8
-(require "arc/ac.scm")
+(require "arc/ac.scm")
9
(require "arc/brackets.scm")
10
(use-bracket-readtable)
11
12
(parameterize ((current-directory "arc"))
13
(aload "arc.arc")
14
(aload "libs.arc"))
15
16
-(aload "generate.arc")
17
-
18
-(system "cp output/* ../ref/")
+(system "rm -rf html")
+(arc-eval '(do
+ (ensure-dir "html")
19
+ (declare 'atstrings nil)
20
+ (load "template.arc")
21
+ (runall)
22
+ ;fails with "Expected tests" error
23
+ ;(run "foundation-doc.tem")
24
+ (system "cp foundation-doc.html html/")
25
+))
26
+(system "cp docs/* html/* ../ref")
27
0 commit comments