Skip to content

Commit

Permalink
fix lint - Strings must use singlequote
Browse files Browse the repository at this point in the history
  • Loading branch information
conor-ob committed Dec 12, 2024
1 parent dbb04d0 commit 2a4734d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/node/src/sdk/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function getSentryRelease(fallback?: string): string | undefined {
// Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
process.env['HEROKU_SLUG_COMMIT'] ||
// Railway - https://docs.railway.app/reference/variables#git-variables
process.env["RAILWAY_GIT_COMMIT_SHA"] ||
process.env['RAILWAY_GIT_COMMIT_SHA'] ||
// Render - https://render.com/docs/environment-variables
process.env['RENDER_GIT_COMMIT'] ||
// Semaphore CI - https://docs.semaphoreci.com/ci-cd-environment/environment-variables
Expand Down
2 changes: 1 addition & 1 deletion packages/vercel-edge/src/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ export function getSentryRelease(fallback?: string): string | undefined {
// Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
process.env['HEROKU_SLUG_COMMIT'] ||
// Railway - https://docs.railway.app/reference/variables#git-variables
process.env["RAILWAY_GIT_COMMIT_SHA"] ||
process.env['RAILWAY_GIT_COMMIT_SHA'] ||
// Render - https://render.com/docs/environment-variables
process.env['RENDER_GIT_COMMIT'] ||
// Semaphore CI - https://docs.semaphoreci.com/ci-cd-environment/environment-variables
Expand Down

0 comments on commit 2a4734d

Please sign in to comment.