Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix errors with
balena-engine update
Many uses of `balena-engine update` were failing, including a bunch of integration tests. The reason is explained below. The new version of runc we are using changed the way it handles command-line arguments -- particularly, how one needs to pass `-` to mean "read the desired container configuration from the standard input". So, the Engine code was still invoking `runc` using the old syntax, which caused `runc` to fail. This commit just updates the `go-runc` dependency, which is the layer we use to invoke `runc` from Go. This new `go-runc` version contains an update to use the new syntax. Signed-off-by: Leandro Motta Barros <leandro@balena.io> Change-type: patch
- Loading branch information