Adding prerequisites for installation.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-03-09 14:55:13 -05:00
parent 1fe6a8f548
commit f365b3529e
1 changed files with 4 additions and 1 deletions

View File

@ -60,7 +60,10 @@ MiniDocs class >> installYamlToJson [
"For the moment, only Gnu/Linux and Mac are supported.
IMPORTANT: Nimble, Nim's package manager should be installed, as this process doesn't verify its proper installation."
self yamlToJsonBinary exists ifTrue: [ ^ MiniDocs appFolder ].
Nimble install: 'commandeer'.
Nimble
install: 'yaml';
install: 'json';
install: 'commandeer'.
OSSUnixSubprocess new
command: 'nim';
arguments: {'c'. self yamlToJsonSourceCode fullName};