Skip to content

Commit d22077a

Browse files
committed
Fix early variable resolution for Equinox build websites
1 parent ecf8740 commit d22077a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sites/equinox/build/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ <h3 id="other">Other Information</h3>
6868
<script>
6969
loadPageData('buildproperties.json', data => {
7070
data.buildTypeName = getBuildTypeName(data)
71-
data.releaseShortUnderscore = data.releaseShort.replace('.', '_')
71+
if (data.releaseShort) {
72+
data.releaseShortUnderscore = data.releaseShort.replace('.', '_')
73+
}
7274
return data
7375
})
7476

0 commit comments

Comments
 (0)