Skip to content

Commit 9e59f0d

Browse files
committed
fix: even more forceful clean
1 parent 202c384 commit 9e59f0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coa.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const shouldClean = async git => {
2626

2727
const forceClean = async git => {
2828
try {
29-
await git.clean('xfdf');
29+
await git.clean('fdfx');
3030
} catch {
3131
// handles cases on windows where path can be too long to clean
3232
const files = await getCompleteFileList(git);
@@ -35,7 +35,7 @@ const forceClean = async git => {
3535
await unlink(file);
3636
}
3737
} finally {
38-
await git.clean('xfdf');
38+
await git.clean('fdfx');
3939
}
4040
};
4141

0 commit comments

Comments
 (0)