We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b440b35 commit 57384f4Copy full SHA for 57384f4
src/mezz/sys-base.reb
@@ -192,7 +192,14 @@ make-module*: func [
192
]
193
194
; MOVE some of these to SYSTEM?
195
-boot-banner: ajoin ["REBOL 3.0 A" system/version/3 " " system/build newline]
+boot-banner: ajoin [
196
+ "REBOL 3." system/version/2 #"." system/version/3
197
+ " for " system/platform
198
+ " built " system/build/date
199
+]
200
+if system/build/git [
201
+ append append boot-banner " commit #" copy/part system/build/git/commit 8
202
203
boot-help: "Boot-sys level - no extra features."
204
boot-host: none ; any host add-ons to the lib (binary)
205
boot-mezz: none ; built-in mezz code (put here on boot)
0 commit comments