Commit a568b8bc authored by Alexey.Golubev's avatar Alexey.Golubev Committed by Alexander.Trofimov

Grunt версии 0.4.x не поддерживает удаление каталогов вне текущей директории....

Grunt версии 0.4.x не поддерживает удаление каталогов вне текущей директории. Для удаления таких объектов используем флаг force.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55494 954022d7-b5bf-4e40-9824-e11837661b57
parent de417c5c
......@@ -18,9 +18,14 @@ module.exports = function(grunt) {
grunt.registerTask('cleanup_deploy_folder_init', 'Initialize tools.', function(){
grunt.initConfig({
clean: [
toolsFile['menu_path']
]
clean: {
options: {
force: true
},
menu:[
toolsFile['menu_path']
]
}
});
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment