Browse Source

Fix last path

pull/1785/head
jlukic 9 years ago
parent
commit
aeda6abe1e
1 changed files with 1 additions and 3 deletions
  1. 4
      tasks/install.js

4
tasks/install.js

@ -99,8 +99,6 @@ module.exports = function () {
// perform update if new version
if(currentConfig.version !== release.version) {
console.log(release);
console.log(require('../package.json'));
console.log('Updating Semantic UI from ' + currentConfig.version + ' to ' + release.version);
console.info('Updating ui definitions...');
@ -124,7 +122,7 @@ module.exports = function () {
.pipe(jsonEditor({
version: release.version
}))
.pipe(gulp.dest(updateFolder))
.pipe(gulp.dest(manager.root))
;
return;

Loading…
Cancel
Save