Skip to content

Commit

Permalink
fix(core): Do not throw when deleting workflows with executions witho…
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Oct 11, 2023
1 parent 54e9009 commit 2b6a15e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/BinaryData/FileSystem.manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class FileSystemManager implements BinaryData.Manager {

await Promise.all(
binaryDataDirs.map(async (dir) => {
await fs.rm(dir, { recursive: true });
await fs.rm(dir, { recursive: true, force: true });
}),
);
}
Expand Down

0 comments on commit 2b6a15e

Please sign in to comment.