Unverified Commit a320ce8e authored by Leona Maroni's avatar Leona Maroni Committed by GitHub
Browse files

nixos/release: fix versionSuffix (#464703)

parents d4b2c13f 3916a96d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ let
  version = fileContents ../.version;
  versionSuffix =
    (if stableBranch then "." else "beta")
    + "${toString nixpkgs.revCount - 901827}.${nixpkgs.shortRev}";
    + "${toString (nixpkgs.revCount - 901827)}.${nixpkgs.shortRev}";

  # Run the tests for each platform.  You can run a test by doing
  # e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,