Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewmackrodt committed Sep 22, 2020
1 parent b912944 commit c86b643
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ async function main() {
// Skip Chromium Linux Sandbox
// https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md#setting-up-chrome-linux-sandbox
if (Config.browser.isTrusted) {
args.push('--no-sandbox')
args.push('--disable-setuid-sandbox')
args.push('--no-sandbox');
args.push('--disable-setuid-sandbox');
}

const browser = await puppeteer.launch({
Expand All @@ -29,7 +29,7 @@ async function main() {
height: Config.page.height,
width: Config.page.width
},
args,
args
});

for (const store of Stores) {
Expand Down

0 comments on commit c86b643

Please sign in to comment.