mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
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:
parent
a7765df326
commit
3706bb5f7d
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ IMPORT Out, Strings, Platform, vpkEnv;
|
||||||
|
|
||||||
PROCEDURE pull*(url : ARRAY OF CHAR; dst : ARRAY OF CHAR);
|
PROCEDURE pull*(url : ARRAY OF CHAR; dst : ARRAY OF CHAR);
|
||||||
VAR i : INTEGER;
|
VAR i : INTEGER;
|
||||||
cmd : ARRAY 120 OF CHAR;
|
cmd : ARRAY 512 OF CHAR;
|
||||||
BEGIN
|
BEGIN
|
||||||
cmd:= "git init ";
|
cmd:= "git init ";
|
||||||
Strings.Append(dst, cmd);
|
Strings.Append(dst, cmd);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue