Skip to content

Commit 57384f4

Browse files
committed
FEAT: improve shortened banner
related to: Oldes/Rebol-issues#1704
1 parent b440b35 commit 57384f4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/mezz/sys-base.reb

+8-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,14 @@ make-module*: func [
192192
]
193193

194194
; MOVE some of these to SYSTEM?
195-
boot-banner: ajoin ["REBOL 3.0 A" system/version/3 " " system/build newline]
195+
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+
]
196203
boot-help: "Boot-sys level - no extra features."
197204
boot-host: none ; any host add-ons to the lib (binary)
198205
boot-mezz: none ; built-in mezz code (put here on boot)

0 commit comments

Comments
 (0)