You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The -k flag was meant to be only for fsxc (not fsx) program, but we're showing it in the fsx case, and in that case it's not doing what it says (it should just compile and not run).
The text was updated successfully, but these errors were encountered:
This bug actually only happens in Unix (macOS+Linux) and only when not being installed as a dotnet tool. Why? Because in those cases launcher.sh is used (instead of fsx.fsproj).
In the cases where launcher.sh is used (instead of fsx.fsproj),
the -k flag was being passed to fsxc successfully, but then the
script would be run. As fixing this would be a bit messy (would
need lots of bash hacks in the launcher), let's rather
deprecate it; and if someone needs to only compile the script,
they can call fsxc directly (which is what we advice in the
deprecation error message).
Fixes#37
The
-k
flag was meant to be only forfsxc
(notfsx
) program, but we're showing it in the fsx case, and in that case it's not doing what it says (it should just compile and not run).The text was updated successfully, but these errors were encountered: