Re: AIO installer problem
- Posted by petelomax Sep 15, 2015
- 1698 views
SDPringle said...
Running the source code below is working now, no immediate crash yet. It looks [like] the problem is only in the binary.
If you call logMsg() before opening f_debug, that'll do it. Try running the source without specifying a directory on the command line.
integer f_debug procedure logMsg() ?f_debug end procedure sequence cmd = command_line() integer lg = length(cmd) if lg < 3 then logMsg() end if f_debug = 5 -- open(...) logMsg() -- close(f_debug)
Pete