aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--spork/declare-cc.janet6
1 files changed, 3 insertions, 3 deletions
diff --git a/spork/declare-cc.janet b/spork/declare-cc.janet
index 8ca0e03..9292001 100644
--- a/spork/declare-cc.janet
+++ b/spork/declare-cc.janet
@@ -314,10 +314,10 @@
(postbuild))
(defn install [manifest &]
# (build) - removed since install in janet/src/boot/boot.janet calls build in the install hook
- (preinstall)
(with-dyns [*install-manifest* manifest]
- (build-rules/build-run e "install" (dyn :workers)))
- (postinstall))
+ (preinstall)
+ (build-rules/build-run e "install" (dyn :workers))
+ (postinstall)))
(defn check [&]
(build)
(precheck)