Skip to content

Commit

Permalink
fix: fix quote marks -> template string
Browse files Browse the repository at this point in the history
  • Loading branch information
davewasmer committed Apr 4, 2017
1 parent 2a3be6d commit 32f24f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Expand Up @@ -194,7 +194,7 @@ async function openCertificateInFirefox(firefoxPath: string): Promise<void> {
}).listen(port);
debug('certificate is hosted, starting firefox at hosted URL');
await new Promise((resolve) => {
console.log('Unable to automatically install SSL certificate - please follow the prompts at http://localhost:${ port } in Firefox to trust the root certificate');
console.log(`Unable to automatically install SSL certificate - please follow the prompts at http://localhost:${ port } in Firefox to trust the root certificate`);
console.log('See https://github.com/davewasmer/devcert#how-it-works for more details');
console.log('-- Press <Enter> once you finish the Firefox prompts --');
exec(`${ firefoxPath } http://localhost:${ port }`);
Expand Down

0 comments on commit 32f24f7

Please sign in to comment.