@Akito Static builds are available via GitHub releases, you can download the static binary at releases page.
Note that the version text is literally “dummy text” as the project previously relied on ocp-build (I think?) to generate version related code/info, and I haven’t figured out a proper replacement yet. Let me know if this breaks your workflow etc.
@XVilka PR has been filed as PR #75 at the master repo. But I don’t anticipate any response, so I’m not going to polish the PR any further unless the author chimes in.
EDIT: I’m doing some more housekeeping right now, and will update this comment when that’s done, so above info may not be the most up to date.
EDIT2: I’ve overhauled the project structure so tests code files can be built in dune. I am having a failing test case, however, which I don’t know what the resolution should be. Essentially !!
in batch (the delayed expansion operators) don’t seem to work when it’s used in the command position.
Relevant code section of test_scripts/batch/command.bat
echo Println Called
set cmd=echo
!cmd! Echo Called
for /f "delims=" %%i in ('echo Value 100%%') do set retval=%%i
echo !retval!
So !cmd! Echo Called
results in
Can't recognize 'echo Echo Called' as an internal or external command, or batch script.
when run in wine via wine cmd /c test_scripts/batch/command.bat