From ed4163cfdebe64962b532951bb21b96882c347a8 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 5 Jul 2020 23:24:07 -0500 Subject: [PATCH] Replace copyright on boot with system information. --- src/boot/boot.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index bb3f5138..0e82cd4f 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -2825,7 +2825,7 @@ (when (and (not *compile-only*) (or *should-repl* *no-file*)) (if-not *quiet* - (print "Janet " janet/version "-" janet/build " Copyright (C) 2017-2020 Calvin Rose")) + (print "Janet " janet/version "-" janet/build " " (os/which) "/" (os/arch))) (flush) (defn getprompt [p] (def [line] (parser/where p))