Skip to content

Commit 21950f2

Browse files
committed
fixing problem with clean
1 parent 5898e18 commit 21950f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ grunt.registerTask( "clean", function() {
2727
.concat( Object.keys( data.tags || {} ) )
2828
.forEach(function( directory ) {
2929
grunt.log.writeln( "Removing " + directory );
30-
grunt.file.remove( config.output + "/" + directory );
30+
grunt.file["delete"]( config.output + "/" + directory );
3131
});
3232
grunt.log.writeln( "Removing data.json" );
33-
grunt.file.remove( config.output + "/data.json" );
33+
grunt.file["delete"]( config.output + "/data.json" );
3434
});
3535

3636
grunt.registerTask( "update-repo", function() {

0 commit comments

Comments
 (0)