- Jan
- 2
- 0
TCC 27.01.24 x64
This occured in Python code
os.system ('p4 sync somedir/...')
where os.system spawns a new command processor and ... is a wildcard and can't be replaced by anything else.
I found a workaroud
set DOTS=...
os.system ('p4 sync somedir/%DOTS%')
TCC.EXE /c whatever/...
triggers a sequence of message boxes, which I assume are for jpsoft internal development purposes- GetCommandLine()=<path>TCC.EXE /c whatever/...
- OLE & COM Initialization
- Initialize global variables
- Initialize system variables
- Parsing command line (/c whatever/...)
This occured in Python code
os.system ('p4 sync somedir/...')
where os.system spawns a new command processor and ... is a wildcard and can't be replaced by anything else.
I found a workaroud
set DOTS=...
os.system ('p4 sync somedir/%DOTS%')