1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-28 01:50:36 +00:00

Fix wiki update on *nix systems

This commit is contained in:
Fellippe Heitor 2022-01-20 19:51:44 -03:00
parent 3660383f3c
commit e70fb238f6

View file

@ -1,5 +1,6 @@
DIM SHARED Cache_Folder AS STRING
Cache_Folder$ = "internal\help"
IF INSTR(_OS$, "WIN") = 0 THEN Cache_Folder$ = "internal/help"
IF _DIREXISTS("internal") = 0 THEN GOTO NoInternalFolder
IF _DIREXISTS(Cache_Folder$) = 0 THEN MKDIR Cache_Folder$
DIM SHARED Help_sx, Help_sy, Help_cx, Help_cy