release.nix: Fix toString issue

This commit is contained in:
Janne Heß 2022-11-21 21:46:44 +01:00
parent 752ad189c1
commit dab3760bfc
No known key found for this signature in database
GPG key ID: 69165158F05265DF

View file

@ -12,7 +12,7 @@ let
version = fileContents ../.version;
versionSuffix =
(if stableBranch then "." else "beta") + "${toString nixpkgs.revCount - 428633}.${nixpkgs.shortRev}";
(if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 428633)}.${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,