Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kairos-io/kairos-agent
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 439922c7503319d4748f42e4966789e265d3a396
Choose a base ref
..
head repository: kairos-io/kairos-agent
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5b2f1d9e594263437f6c9fec2dd1c80865b27741
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 internal/agent/hooks/bundles.go
2 changes: 1 addition & 1 deletion internal/agent/hooks/bundles.go
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ func (b BundlePostInstall) Run(c config.Config, _ v1.Spec) error {
return err
}

cmd := exec.Command("rsync", "-aqAX", "/var/lib/extensions", "/usr/local/.state/var-lib-extensions.bind")
cmd := exec.Command("rsync", "-aqAX", "/var/lib/extensions/", "/usr/local/.state/var-lib-extensions.bind")
_, err = cmd.CombinedOutput()
if c.FailOnBundleErrors && err != nil {
return err