We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac450d commit 20e3a48Copy full SHA for 20e3a48
modules/BOSH.Agent/BOSH.Agent.psm1
@@ -68,6 +68,11 @@ function Copy-Agent
68
Move-Item (Join-Path $boshDir (Join-Path "deps" "*")) $depsDir
69
Remove-Item -Path (Join-Path $boshDir "deps") -Force
70
71
+ # Although we previously removed bsdtar in favor of the system tar that
72
+ # comes with windows, some older garden-runc releases (< v1.76.0) still
73
+ # expect tar to live there. This preserves backwards compatability. We can
74
+ # likely rip this out again once we're out of some reasonable window where
75
+ # someone will still be running an older garden-runc release
76
Copy-Item "C:\Windows\system32\tar.exe" -Destination (Join-Path $depsDir "tar.exe")
77
}
78
0 commit comments