diff options
author | Tomi Virkki <tomivirkki@users.noreply.github.com> | 2015-10-08 16:57:05 +0300 |
---|---|---|
committer | Tomi Virkki <tomivirkki@users.noreply.github.com> | 2015-10-08 16:57:05 +0300 |
commit | 7e1b14654c5650770d5941084f24db2f93e6a313 (patch) | |
tree | 3a5f9b5f73955b6235d53817bc96c4de4ad5bf91 /tasks | |
parent | 4ecbae8718341d380c57fce6bbd8fb690930bee1 (diff) | |
parent | 2f528f4b80287c4325f7fac596b59479841b13ac (diff) | |
download | vaadin-core-7e1b14654c5650770d5941084f24db2f93e6a313.tar.gz vaadin-core-7e1b14654c5650770d5941084f24db2f93e6a313.zip |
Merge pull request #17 from vaadin/cdn-destination
Fix cdn-destination after some changes in vaadin infra
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/cdn.js | 2 | ||||
-rw-r--r-- | tasks/config.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tasks/cdn.js b/tasks/cdn.js index fe48cec..d1a8526 100644 --- a/tasks/cdn.js +++ b/tasks/cdn.js @@ -14,7 +14,7 @@ var addsrc = require('gulp-add-src'); var stagingBasePath = config.paths.staging.cdn; var version = config.version; -var host = config.cdnHost; +var host = config.toolsHost; var permalink = config.permalink; var stagingPath = stagingBasePath + '/' + version; var testPath = process.cwd() + '/' + stagingPath + '/test'; diff --git a/tasks/config.js b/tasks/config.js index 4c53fd6..83560f0 100644 --- a/tasks/config.js +++ b/tasks/config.js @@ -7,7 +7,7 @@ module.exports = { components: ['vaadin-grid'], version: args.version || 'master', permalink: args.version ? 'latest' : '', - cdnHost: args.cdnHostname || 'cdn.vaadin.com', + toolsHost: args.toolsHostname || 'tools.vaadin.com', zipHost: args.zipHostname || 'vaadin.com', paths: { staging: { |