Skip to content

Commit

Permalink
containerd: update commit id for version indicator
Browse files Browse the repository at this point in the history
I forogt to update the `commit` value in 8884729, which is why this the
version output was wrong:

```
❯ ./result/bin/containerd -v
containerd github.com/containerd/containerd v1.4.3 7ad184331fa3e55e52b890ea95e65ba581ae3429
```

This change corrects it.

```
❯ ./result/bin/containerd -v
containerd github.com/containerd/containerd v1.4.3 269548fa27e0089a8b8278fc4fc781d7f65a939b
```
  • Loading branch information
mweinelt committed Dec 1, 2020
1 parent 123e83b commit 2d55b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/virtualization/containerd/default.nix
Expand Up @@ -6,7 +6,7 @@ buildGoPackage rec {
pname = "containerd";
version = "1.4.3";
# git commit for the above version's tag
commit = "7ad184331fa3e55e52b890ea95e65ba581ae3429";
commit = "269548fa27e0089a8b8278fc4fc781d7f65a939b";

src = fetchFromGitHub {
owner = "containerd";
Expand Down

2 comments on commit 2d55b8d

@SuperSandro2000
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do not forget to also add this to the backport.

@mweinelt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.