-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fsx: fix regression that made fsxc misbehave
In a geewallet's PR[1] I bisected the problem to this commit: dd66eb3. So I'm basically reverting that commit here, but I still don't understand why it would cause such a regression. The problem is that fsxc is not able to compile anymore certain scripts and spits some errors that look to be warnings, such as: ``` Error: D:\a\geewallet\geewallet\scripts\bin\downloadUbuntuDeps.fsx.fs(14,1): error FS0020: The result of this expression has type 'int' and is implicitly ignored. Consider using 'ignore' to discard this value explicitly, e.g. 'expr |> ignore', or 'let' to bind the result to a name, e.g. 'let result = expr'. [D:\a\geewallet\geewallet\scripts\bin\downloadUbuntuDeps.fsx.fsproj] ``` [1] nblockchain/geewallet#289
- Loading branch information
Showing
2 changed files
with
22 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
BaseVersion=0.6.0 | ||
BaseVersion=0.6.1 |