Skip to content

Commit

Permalink
Use fs.mkDirSync, see #1436
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 15, 2024
1 parent 7cb7aa9 commit 914876b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/grunt/tasks/clean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const clean = ( async () => {
const repo = getRepo();
const buildDirectory = `../${repo}/build`;

// Check if the build directory exists, then delete and recreate it
// Check if the build directory exists, then delete and recreate it
if ( grunt.file.exists( buildDirectory ) ) {
grunt.file.delete( buildDirectory );
}
Expand Down

0 comments on commit 914876b

Please sign in to comment.