Skip to content

Commit

Permalink
fix(launchDoctor): add sudo to install missing packages hint (#3402)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelEinbinder committed Aug 12, 2020
1 parent c035560 commit 1ef199f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/validateDependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async function validateDependenciesLinux(browserPath: string, browser: BrowserDe
if (missingPackages.size) {
missingPackagesMessage = [
` Install missing packages with:`,
` apt-get install ${[...missingPackages].join('\\\n ')}`,
` sudo apt-get install ${[...missingPackages].join('\\\n ')}`,
``,
``,
].join('\n');
Expand Down

0 comments on commit 1ef199f

Please sign in to comment.