Skip to content
This repository was archived by the owner on Jul 3, 2023. It is now read-only.

Commit 7169bdf

Browse files
committed
書き方を修正
1 parent a9f7695 commit 7169bdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ const tc = require("@actions/tool-cache");
88
const extractedPath = await tc.extractTar(cliPath);
99
const binPath = await tc.cacheDir(extractedPath, "qiita", "0.1.0");
1010
core.addPath(binPath);
11-
}).catch((error) => {
12-
core.setFailed(error.message);
11+
})().catch((err) => {
12+
core.setFailed(err.message);
1313
});

0 commit comments

Comments
 (0)