forked from mirrors/nixpkgs
Merge pull request #275929 from mveytsman/patch-2
copilot-cli: use `v${version}` for version (fixes bug in version checking)
This commit is contained in:
commit
3eb1c0f843
|
@ -19,7 +19,7 @@ buildGoModule rec {
|
|||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/aws/copilot-cli/internal/pkg/version.Version=${version}"
|
||||
"-X github.com/aws/copilot-cli/internal/pkg/version.Version=v${version}"
|
||||
"-X github.com/aws/copilot-cli/internal/pkg/cli.binaryS3BucketPath=https://ecs-cli-v2-release.s3.amazonaws.com"
|
||||
];
|
||||
|
||||
|
@ -35,6 +35,7 @@ buildGoModule rec {
|
|||
passthru.tests.version = testers.testVersion {
|
||||
package = copilot-cli;
|
||||
command = "copilot version";
|
||||
version = "v${version}";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue