Skip to content

Commit 3b5f3b2

Browse files
committed
FIX: added os version into short banner and not using commit if not present any
1 parent 3acbfdb commit 3b5f3b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mezz/sys-base.reb

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ make-module*: func [
194194
; MOVE some of these to SYSTEM?
195195
boot-banner: ajoin [
196196
"REBOL 3." system/version/2 #"." system/version/3
197-
" for " system/platform
197+
" for " system/platform " (" system/build/os #")"
198198
" built " system/build/date
199199
]
200-
if system/build/git [
200+
if all [system/build/git system/build/git/commit] [
201201
append append boot-banner " commit #" copy/part system/build/git/commit 8
202202
]
203203
boot-help: "Boot-sys level - no extra features."

0 commit comments

Comments
 (0)