WIP: Fix the command length issue

Based on tests, looks like in many cases we need more than 120 chars for
the cmd variable
This commit is contained in:
antranigv 2022-04-05 15:42:28 +04:00
parent a7765df326
commit 3706bb5f7d
No known key found for this signature in database
GPG key ID: DE3998662D59F21C

View file

@ -3,7 +3,7 @@ IMPORT Out, Strings, Platform, vpkEnv;
PROCEDURE pull*(url : ARRAY OF CHAR; dst : ARRAY OF CHAR);
VAR i : INTEGER;
cmd : ARRAY 120 OF CHAR;
cmd : ARRAY 512 OF CHAR;
BEGIN
cmd:= "git init ";
Strings.Append(dst, cmd);