Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid wildcard expansion when making F# builds
This fixes a regression introduced in af1b98d Before the regression there was the term: --already_cached '*,' The regression switched it to: --already_cached '*' which causes: Y:/source/FStar/src/ocaml-output/fstar/bin/fstar.exe --use_hints --warn_error @241 --cache_checked_modules --odir fs/extracted --cache_dir .cache --already_cached '*' FStar.Pervasives.fst --codegen FSharp --extract_module FStar.Pervasives * Error 151: - Not a valid FStar file: '..' 1 error was reported (see above) make: *** [Makefile.extract.fsharp:34: fs/extracted/FStar_Pervasives.fs] Error 1 This fix puts back the original trailing comma which inhibits the wildcard expansion.
- Loading branch information