aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBob Tolbert <bob@eyesopen.com>2025-08-17 11:44:21 -0500
committerCalvin Rose <calsrose@gmail.com>2025-08-19 19:46:52 -0500
commitf3ba114847b141a4782efe84134da4a4230a6d7e (patch)
tree101f6950a2fd2b3431cea398b8aa47843f3f8804
parentBrief: add more pre/post steps for janet-pm (diff)
make sure pre/postinstall are run withdyns *install-manifest*
-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)