mirror of
https://github.com/janet-lang/janet
synced 2025-07-13 23:42:54 +00:00
Allow passing configs to bundle reinstall.
This commit is contained in:
parent
f4fd481415
commit
e37575e763
@ -4336,9 +4336,9 @@
|
|||||||
|
|
||||||
(defn bundle/update-all
|
(defn bundle/update-all
|
||||||
"Reinstall all bundles"
|
"Reinstall all bundles"
|
||||||
[]
|
[&keys configs]
|
||||||
(each bundle (bundle/list)
|
(each bundle (bundle/topolist)
|
||||||
(bundle/reinstall bundle))))
|
(bundle/reinstall bundle ;(kvs configs)))))
|
||||||
|
|
||||||
###
|
###
|
||||||
###
|
###
|
||||||
@ -4700,9 +4700,8 @@
|
|||||||
(each s core-sources
|
(each s core-sources
|
||||||
(do-one-file s))
|
(do-one-file s))
|
||||||
|
|
||||||
# Create C source file that contains images a uint8_t buffer. This
|
# Create C source file that contains the boot image in a uint8_t buffer. This
|
||||||
# can be compiled and linked statically into the main janet library
|
# can be compiled and linked statically into the main janet library and client
|
||||||
# and example client.
|
|
||||||
(print "static const unsigned char janet_core_image_bytes[] = {")
|
(print "static const unsigned char janet_core_image_bytes[] = {")
|
||||||
(loop [line :in (partition 16 image)]
|
(loop [line :in (partition 16 image)]
|
||||||
(prin " ")
|
(prin " ")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user