Skip to content

Commit c606ac5

Browse files
chore: Ensure hash is treated as a string (#3604)
1 parent c285920 commit c606ac5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-tools/tasks/generate-custom-css-properties.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function writeSassFile() {
3434
filepath,
3535
`
3636
// Build environment
37-
$awsui-commit-hash: ${workspace.gitCommitVersion};
37+
$awsui-commit-hash: "${workspace.gitCommitVersion}";
3838
// Manually managed CSS-variables
3939
${customCssPropertiesList.map(property => `$${property}: ${getHashedProperty(property)};`).join('\n')}
4040
`

0 commit comments

Comments
 (0)