mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-07-03 11:16:36 +02:00
Handling case when impl version can't be detected.
This commit is contained in:
parent
9688f01afd
commit
5b6ca8e760
1 changed files with 5 additions and 2 deletions
|
@ -33,8 +33,11 @@
|
|||
(let ((msg
|
||||
(string-append
|
||||
"Implementation " (symbol->string (car spec))
|
||||
" is an unsupported version, " version ", but"
|
||||
" at least " (fourth spec) " is required.")))
|
||||
(if (string? version)
|
||||
(string-append " is an unsupported version, "
|
||||
version)
|
||||
" is an unknown version")
|
||||
", but at least " (fourth spec) " is required.")))
|
||||
(cond
|
||||
(confirm?
|
||||
(yes-or-no? cfg msg " Install anyway?"))
|
||||
|
|
Loading…
Add table
Reference in a new issue