We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4e7f7 commit 3863ef3Copy full SHA for 3863ef3
1 file changed
src/cli/index.ts
@@ -238,9 +238,7 @@ const runCommand = async (
238
}
239
if (command === "clean-cache") {
240
const { cleanGitCache } = await import("../clean-git-cache");
241
- const result = await cleanGitCache({
242
- json: options.json,
243
- });
+ const result = await cleanGitCache();
244
if (options.json) {
245
process.stdout.write(`${JSON.stringify(result, null, 2)}\n`);
246
} else if (result.removed) {
0 commit comments