The default tests for runcmd_test.go fail on windows. By default hf uses cat $FILES and cat $FILES | wc -l as test commands. On Windows, cat is an alias in Powershell. When the default shell is changed to use powershell -Command instead of cmd /c, the cat command works for one file, but it will not work for multiple files.
The default tests for runcmd_test.go fail on windows. By default hf uses
cat $FILESandcat $FILES | wc -las test commands. On Windows,catis an alias in Powershell. When the default shell is changed to usepowershell -Commandinstead ofcmd /c, thecatcommand works for one file, but it will not work for multiple files.