Skip to content

Commit

Permalink
fixes windows path un ui-framework startup (#9934)
Browse files Browse the repository at this point in the history
  • Loading branch information
BigFunger authored Jan 18, 2017
1 parent 5f4cf32 commit ec58465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/ui_framework.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = function (grunt) {

function uiFrameworkServerStart() {
const serverCmd = {
cmd: /^win/.test(platform) ? '.\\node_modules\\.bin\\webpack-dev-server' : './node_modules/.bin/webpack-dev-server',
cmd: /^win/.test(platform) ? '.\\node_modules\\.bin\\webpack-dev-server.cmd' : './node_modules/.bin/webpack-dev-server',
args: [
'--config=ui_framework/doc_site/webpack.config.js',
'--hot ',
Expand Down

0 comments on commit ec58465

Please sign in to comment.