Rewrite #1

Open
svenvanheugten wants to merge 23 commits from mutannot-rewrite into main
Showing only changes of commit 05deb1f089 - Show all commits

View file

@ -1,3 +1,5 @@
open System
open System.IO
open Fli open Fli
[<EntryPoint>] [<EntryPoint>]
@ -18,4 +20,13 @@ let main argv =
eprintfn "Uncommitted changes. Refusing to run." eprintfn "Uncommitted changes. Refusing to run."
exit 2 exit 2
cli {
Exec "dotnet"
Arguments [ "build"; argv[0] ]
Output(new StreamWriter(Console.OpenStandardOutput()))
}
|> Command.execute
|> Output.throwIfErrored
|> ignore
0 0