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

View File

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