remove beta from version string

pull/2127/head
Sebastien Bourdeauducq 2022-07-08 18:20:23 +08:00
parent 2e05a1bd0d
commit 59dfb9e902
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
artiqVersionMajor = 7;
artiqVersionMinor = self.sourceInfo.revCount or 0;
artiqVersionId = self.sourceInfo.shortRev or "unknown";
artiqVersion = (builtins.toString artiqVersionMajor) + "." + (builtins.toString artiqVersionMinor) + "." + artiqVersionId + ".beta";
artiqVersion = (builtins.toString artiqVersionMajor) + "." + (builtins.toString artiqVersionMinor) + "." + artiqVersionId;
artiqRev = self.sourceInfo.rev or "unknown";
rustManifest = pkgs.fetchurl {