Skip to content

Commit

Permalink
Make Codacy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedidomizio committed Mar 9, 2024
1 parent 8bb43c0 commit 31fcc2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/chrome-web-store-api.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import chromeWebstoreUpload from 'chrome-webstore-upload';
const { GCP_CLIENT_ID, GCP_CLIENT_SECRET, GCP_REFRESH_TOKEN } = process.env;

if (!GCP_CLIENT_ID) {
throw new Error('No GCP_CLIENT_ID')
throw new Error('No GCP_CLIENT_ID');
}

if (!GCP_CLIENT_SECRET) {
throw new Error('No GCP_CLIENT_SECRET')
throw new Error('No GCP_CLIENT_SECRET');
}

if (!GCP_REFRESH_TOKEN) {
throw new Error('No GCP_REFRESH_TOKEN')
throw new Error('No GCP_REFRESH_TOKEN');
}

const chromeWebStore = chromeWebstoreUpload({
Expand Down

0 comments on commit 31fcc2c

Please sign in to comment.