Http fetch to file doesn't work for some reason

This commit is contained in:
Ruben Shekspir 2019-05-05 13:58:18 +04:00
parent ab197c6483
commit 6c66d03769
6 changed files with 54 additions and 21 deletions

View file

@ -19,13 +19,12 @@ PROCEDURE parseArgs(VAR argument: ARRAY OF CHAR);
BEGIN
COPY("", argument);
IF Args.argc > 1 THEN Args.Get(1, argument) END;
END parseArgs;
BEGIN
parseArgs(command);
IF Strings.Match(command, "") THEN
IF Strings.Match(command, "") OR Strings.Match(command, "--help")THEN
help;
ELSIF Strings.Match(command, "install") THEN
PackageFileParser.install();