just in case

This commit is contained in:
Chris Wanstrath 2026-03-05 07:52:09 -08:00
parent ad8ef49439
commit e119aed205

View File

@ -1,3 +1,3 @@
declare var __GIT_SHA__: string | undefined declare var __GIT_SHA__: string | undefined
export const SHA: string = __GIT_SHA__ ?? 'dev' export const SHA: string = typeof __GIT_SHA__ !== 'undefined' ? __GIT_SHA__ : 'dev'