Skip to content

Commit

Permalink
set autoStartBackend in shellEnvs of release.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
disassembler committed Dec 6, 2018
1 parent a44898f commit 452f7bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.nix
Expand Up @@ -7,8 +7,8 @@ let
version = "${version}${suffix}";
};
shellEnvs = {
linux = import ./shell.nix { system = "x86_64-linux"; };
darwin = import ./shell.nix { system = "x86_64-darwin"; };
linux = import ./shell.nix { system = "x86_64-linux"; autoStartBackend = true; };
darwin = import ./shell.nix { system = "x86_64-darwin"; autoStartBackend = true; };
};
suffix = if buildNum == null then "" else "-${toString buildNum}";
version = (builtins.fromJSON (builtins.readFile (./. + "/package.json"))).version;
Expand Down

0 comments on commit 452f7bc

Please sign in to comment.