k3s: Avoid string conversion
This commit is contained in:
parent
5e3a73dba1
commit
0c9db04497
1 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ let
|
|||
# with generated bindata yet.
|
||||
k3sBuildStage1 = buildGoPackage rec {
|
||||
name = "k3s-build-1";
|
||||
version = "${k3sVersion}";
|
||||
version = k3sVersion;
|
||||
|
||||
goPackagePath = "github.com/rancher/k3s";
|
||||
|
||||
|
@ -160,7 +160,7 @@ let
|
|||
};
|
||||
k3sBin = buildGoPackage rec {
|
||||
name = "k3s-bin";
|
||||
version = "${k3sVersion}";
|
||||
version = k3sVersion;
|
||||
|
||||
goPackagePath = "github.com/rancher/k3s";
|
||||
|
||||
|
|
Loading…
Reference in a new issue