Release commit

This commit is contained in:
RainLoop Team 2014-08-31 01:33:34 +04:00
parent abdd452be6
commit 71ede5b816

View file

@ -395,7 +395,7 @@ gulp.task('rainloop:md5', ['rainloop:zip'], function() {
renameFileWothMd5Hash(cfg.destPath + cfg.md5File) : false; renameFileWothMd5Hash(cfg.destPath + cfg.md5File) : false;
}); });
gulp.task('rainloop:clean', ['rainloop:copy', 'rainloop:setup'], function() { gulp.task('rainloop:clean', ['rainloop:copy', 'rainloop:setup', 'rainloop:zip'], function() {
return (cfg.cleanPath) ? cleanDir(cfg.cleanPath) : false; return (cfg.cleanPath) ? cleanDir(cfg.cleanPath) : false;
}); });
@ -445,7 +445,7 @@ gulp.task('rainloop:owncloud:md5', ['rainloop:owncloud:zip'], function() {
renameFileWothMd5Hash(cfg.destPath + cfg.md5File) : false; renameFileWothMd5Hash(cfg.destPath + cfg.md5File) : false;
}); });
gulp.task('rainloop:owncloud:clean', ['rainloop:owncloud:copy', 'rainloop:owncloud:setup'], function() { gulp.task('rainloop:owncloud:clean', ['rainloop:owncloud:copy', 'rainloop:owncloud:setup', 'rainloop:owncloud:zip'], function() {
return (cfg.cleanPath) ? cleanDir(cfg.cleanPath) : false; return (cfg.cleanPath) ? cleanDir(cfg.cleanPath) : false;
}); });