Skip to content

Commit

Permalink
Remove unnecessary attribute passing in release expression (#2766)
Browse files Browse the repository at this point in the history
This might resolve the glitch that threw the last release from the rails: #2765 (comment)

There was no receive-side match for the argument `internal`, thus the nix call failed.
  • Loading branch information
ggreif authored Sep 7, 2021
1 parent e22c02d commit cce95e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release-files.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
{ releaseVersion ? "latest" }:
let
nixpkgs = import ./nix { };
linux = import ./default.nix { system = "x86_64-linux"; internal = true; inherit releaseVersion; };
darwin = import ./default.nix { system = "x86_64-darwin"; internal = true; inherit releaseVersion; };
linux = import ./default.nix { system = "x86_64-linux"; inherit releaseVersion; };
darwin = import ./default.nix { system = "x86_64-darwin"; inherit releaseVersion; };

as_tarball = dir: derivations:
nixpkgs.runCommandNoCC "motoko-${releaseVersion}.tar.gz" {
Expand Down

0 comments on commit cce95e0

Please sign in to comment.