Skip to content

Commit 448d59a

Browse files
committed
fix: missing -t argument in CNI plugns install
1 parent f103f5b commit 448d59a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/download.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const installCniPlugins = async (inputs = {}) => {
5757
});
5858
const extractedTarDir = await tc.extractTar(tar);
5959
const cniBinDirPath = '/opt/cni/bin';
60-
logExecSync(`sudo find ${extractedTarDir} -type f -exec install -Dm 0755 "{}" "${cniBinDirPath}" \\;`);
60+
logExecSync(`sudo find ${extractedTarDir} -type f -exec install -Dm 0755 "{}" -t "${cniBinDirPath}" \\;`);
6161
};
6262

6363
const installCriCtl = async (inputs = {}) => {

0 commit comments

Comments
 (0)