Skip to content

Commit 786ef80

Browse files
feat: Outputting files from build.ps1
Except for certain files
1 parent b69a272 commit 786ef80

File tree

2 files changed

+5
-232
lines changed

2 files changed

+5
-232
lines changed

4bitcss.com/build.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,8 @@ if ($site.Archive) {
196196
#endregion archive.zip
197197
if ($PSScriptRoot) { Pop-Location }
198198

199-
$site.PSScriptRoot | Get-ChildItem -Recurse -File
199+
$omitFromOutput = @(
200+
'gitHubEvent.json'
201+
)
202+
203+
$site.PSScriptRoot | Get-ChildItem -Recurse -File | ? Name -notin $omitFromOutput

4bitcss.com/gitHubEvent.json

Lines changed: 0 additions & 231 deletions
This file was deleted.

0 commit comments

Comments
 (0)