Skip to content

Commit

Permalink
fix: missing -t argument in CNI plugns install
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Sep 12, 2023
1 parent f103f5b commit 448d59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const installCniPlugins = async (inputs = {}) => {
});
const extractedTarDir = await tc.extractTar(tar);
const cniBinDirPath = '/opt/cni/bin';
logExecSync(`sudo find ${extractedTarDir} -type f -exec install -Dm 0755 "{}" "${cniBinDirPath}" \\;`);
logExecSync(`sudo find ${extractedTarDir} -type f -exec install -Dm 0755 "{}" -t "${cniBinDirPath}" \\;`);
};

const installCriCtl = async (inputs = {}) => {
Expand Down

0 comments on commit 448d59a

Please sign in to comment.