Skip to content

Commit 2a4734d

Browse files
committed
fix lint - Strings must use singlequote
1 parent dbb04d0 commit 2a4734d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/node/src/sdk/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function getSentryRelease(fallback?: string): string | undefined {
6969
// Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
7070
process.env['HEROKU_SLUG_COMMIT'] ||
7171
// Railway - https://docs.railway.app/reference/variables#git-variables
72-
process.env["RAILWAY_GIT_COMMIT_SHA"] ||
72+
process.env['RAILWAY_GIT_COMMIT_SHA'] ||
7373
// Render - https://render.com/docs/environment-variables
7474
process.env['RENDER_GIT_COMMIT'] ||
7575
// Semaphore CI - https://docs.semaphoreci.com/ci-cd-environment/environment-variables

packages/vercel-edge/src/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export function getSentryRelease(fallback?: string): string | undefined {
269269
// Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
270270
process.env['HEROKU_SLUG_COMMIT'] ||
271271
// Railway - https://docs.railway.app/reference/variables#git-variables
272-
process.env["RAILWAY_GIT_COMMIT_SHA"] ||
272+
process.env['RAILWAY_GIT_COMMIT_SHA'] ||
273273
// Render - https://render.com/docs/environment-variables
274274
process.env['RENDER_GIT_COMMIT'] ||
275275
// Semaphore CI - https://docs.semaphoreci.com/ci-cd-environment/environment-variables

0 commit comments

Comments
 (0)