We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f103f5b commit 448d59aCopy full SHA for 448d59a
src/download.js
@@ -57,7 +57,7 @@ const installCniPlugins = async (inputs = {}) => {
57
});
58
const extractedTarDir = await tc.extractTar(tar);
59
const cniBinDirPath = '/opt/cni/bin';
60
- logExecSync(`sudo find ${extractedTarDir} -type f -exec install -Dm 0755 "{}" "${cniBinDirPath}" \\;`);
+ logExecSync(`sudo find ${extractedTarDir} -type f -exec install -Dm 0755 "{}" -t "${cniBinDirPath}" \\;`);
61
};
62
63
const installCriCtl = async (inputs = {}) => {
0 commit comments