Skip to content

Commit

Permalink
fix https option for new app scripts (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
moritzraho authored Apr 14, 2020
1 parent 46d3bdb commit 7282a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/app/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class Run extends BaseCommand {
}
// if they now exist ... use them in the options
if (await fs.exists(PRIVATE_KEY_PATH) && await fs.exists(PUB_CERT_PATH)) {
runOptions.https = {
runOptions.parcel.https = {
cert: PUB_CERT_PATH, // Path to custom certificate
key: PRIVATE_KEY_PATH // Path to custom key
}
Expand Down

0 comments on commit 7282a46

Please sign in to comment.