Skip to content

Commit 3863ef3

Browse files
committed
fix: type error
1 parent 8b4e7f7 commit 3863ef3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/cli/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,7 @@ const runCommand = async (
238238
}
239239
if (command === "clean-cache") {
240240
const { cleanGitCache } = await import("../clean-git-cache");
241-
const result = await cleanGitCache({
242-
json: options.json,
243-
});
241+
const result = await cleanGitCache();
244242
if (options.json) {
245243
process.stdout.write(`${JSON.stringify(result, null, 2)}\n`);
246244
} else if (result.removed) {

0 commit comments

Comments
 (0)