mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
nixos/release: fix versionSuffix eval
This commit is contained in:
parent
35a3cb94c6
commit
625c450024
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ let
|
||||||
|
|
||||||
version = fileContents ../.version;
|
version = fileContents ../.version;
|
||||||
versionSuffix =
|
versionSuffix =
|
||||||
(if stableBranch then "." else "beta") + "${toString nixpkgs.revCount - 551362}.${nixpkgs.shortRev}";
|
(if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 551362)}.${nixpkgs.shortRev}";
|
||||||
|
|
||||||
# Run the tests for each platform. You can run a test by doing
|
# 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’,
|
# e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue