-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Command_unix following the deprecation of Command
In Core v0.15 `Command.run` is deprecated in favor of `Command_unix` to be able to split Unix parts into their separate packages. This means the code needs to adapt. Turns out v0.14 supports that already and since this is a benchmarking binary there isn't that much value in keeping it installable on large range of versions of Core.
- Loading branch information
1 parent
7fbec1d
commit c05e560
Showing
3 changed files
with
6 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -79,7 +79,7 @@ let main () = | |
("generic", generic); | ||
("buffer", buffer) | ||
] | ||
|> Command.run | ||
|> Command_unix.run | ||
|
||
let () = | ||
main () |
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