mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
Set the maximum command line char to 2048
The reasoning is because POSIX's requirements, see https://github.com/freebsd/freebsd-src/blob/main/include/limits.h#L72 for more info
This commit is contained in:
parent
3706bb5f7d
commit
3e2a115c73
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);
|
||||
VAR i : INTEGER;
|
||||
cmd : ARRAY 512 OF CHAR;
|
||||
cmd : ARRAY 2048 OF CHAR;
|
||||
BEGIN
|
||||
cmd:= "git init ";
|
||||
Strings.Append(dst, cmd);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue