File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 43414341 (def info (-> infofile-dest slurp parse ))
43424342 (def deps (seq [d :in (get info :dependencies @[])]
43434343 (string (if (dictionary? d ) (get d :name ) d ))))
4344- (def missing (filter (complement bundle/installed? ) deps ))
4345- (when (next missing )
4346- (error (string " missing dependencies " (string/join missing " , " ))))
43474344 (put man :dependencies deps )
43484345 (put man :info info ))
43494346 (def clean (get config :clean ))
43524349 (def all-hooks (seq [[k v ] :pairs module :when (symbol? k ) :unless (get v :private )] (keyword k )))
43534350 (put man :hooks all-hooks )
43544351 (do-hook module bundle-name :dependencies man )
4352+ (def missing (filter (complement bundle/installed? ) (get man :dependencies [])))
4353+ (when (next missing )
4354+ (error (string " missing dependencies " (string/join missing " , " ))))
43554355 (when clean
43564356 (do-hook module bundle-name :clean man ))
43574357 (do-hook module bundle-name :build man )
You can’t perform that action at this time.
0 commit comments