Browse Source

Fix update paths

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

8
tasks/install.js

@ -87,10 +87,10 @@ module.exports = function () {
var
updateFolder = manager.root,
updatePaths = {
config : path.join(updateFolder, files.config),
definition : path.join(updateFolder, currentConfig.base, currentConfig.paths.source.definitions),
site : path.join(updateFolder, currentConfig.base, currentConfig.paths.source.site),
theme : path.join(updateFolder, currentConfig.base, currentConfig.paths.source.themes)
config : path.join(manager.root, files.config),
definition : path.join(updateFolder, currentConfig.paths.source.definitions),
site : path.join(updateFolder, currentConfig.paths.source.site),
theme : path.join(updateFolder, currentConfig.paths.source.themes)
}
;

Loading…
Cancel
Save