Skip to content

Commit 5e328ac

Browse files
author
James Brundage
committed
fix: Making .txt files single-line ( Fixes #61 )
1 parent 70c06e2 commit 5e328ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Build/4bitcss.build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ foreach ($jsonFile in $jsonFiles) {
6969
# Then export it again to /docs (so the GitHub page works)
7070
$jsonObject | Export-4BitCSS -OutputPath $ColorSchemePath
7171
$dotTextPath = Join-Path $ColorSchemePath "$colorSchemeFileName.txt"
72-
$distinctColors | Set-Content -Path $dotTextPath -Encoding utf8
72+
$distinctColors -join ';' | Set-Content -Path $dotTextPath -Encoding utf8
7373
Get-Item -Path $dotTextPath
7474
$allColorSchemes += $colorSchemeFileName
7575

0 commit comments

Comments
 (0)