Skip to content

Commit

Permalink
Merge pull request #532 from ryan-codingintrigue/master
Browse files Browse the repository at this point in the history
Assign --cacert CLI argument to correct server options property
  • Loading branch information
SpaceK33z authored Aug 21, 2016
2 parents 87ddebd + f27f1c2 commit d9266b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/webpack-dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ function processOptions(wpOpt) {
options.key = fs.readFileSync(path.resolve(argv["key"]));

if(argv["cacert"])
options.cacert = fs.readFileSync(path.resolve(argv["cacert"]));
options.ca = fs.readFileSync(path.resolve(argv["cacert"]));

if(argv["inline"] === false)
options.inline = false;
Expand Down

0 comments on commit d9266b9

Please sign in to comment.