We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4092f0a + 4a55025 commit afb7677Copy full SHA for afb7677
index.js
@@ -4,6 +4,7 @@
4
var Promise = require('ember-cli/lib/ext/promise');
5
var glob = require('glob');
6
var DeployPluginBase = require('ember-cli-deploy-plugin');
7
+var path = require('path');
8
9
module.exports = {
10
name: 'ember-cli-deploy-build',
@@ -13,7 +14,7 @@ module.exports = {
13
14
name: options.name,
15
defaultConfig: {
16
environment: 'production',
- outputPath: 'tmp/deploy-dist'
17
+ outputPath: 'tmp' + path.sep + 'deploy-dist'
18
},
19
20
build: function(context) {
0 commit comments