mirror of
https://github.com/vishapoberon/vipak.git
synced 2026-04-05 20:42:26 +00:00
got rid of closing 0X in vipackConf.json
This commit is contained in:
parent
6ceb5be7b6
commit
1089f84f65
1 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
MODULE vpkConf;
|
MODULE vpkConf;
|
||||||
IMPORT Out,Files, vpkFsHelper, Platform;
|
IMPORT Out, Files, Strings, Platform,
|
||||||
|
vpkFsHelper;
|
||||||
|
|
||||||
PROCEDURE confExists*(VAR confFile: ARRAY OF CHAR ):BOOLEAN;
|
PROCEDURE confExists*(VAR confFile: ARRAY OF CHAR ):BOOLEAN;
|
||||||
BEGIN
|
BEGIN
|
||||||
|
|
@ -33,7 +34,7 @@ VAR f : Files.File;
|
||||||
BEGIN
|
BEGIN
|
||||||
f := Files.Old(pathToFile);
|
f := Files.Old(pathToFile);
|
||||||
Files.Set(r,f,posRider);
|
Files.Set(r,f,posRider);
|
||||||
Files.WriteString(r,text);
|
Files.WriteBytes(r, text, Strings.Length(text));
|
||||||
Files.Close(f);
|
Files.Close(f);
|
||||||
END writeInFile;
|
END writeInFile;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue