From 674ab0308b71fd6c3215922268c6979f50425a11 Mon Sep 17 00:00:00 2001 From: "Mr.k" Date: Fri, 23 Aug 2024 00:28:39 +0300 Subject: [PATCH] Update Exclude Files List for Preprocessing in 'Compile.ps1' Script --- Compile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compile.ps1 b/Compile.ps1 index 2e42c480..380dc4eb 100644 --- a/Compile.ps1 +++ b/Compile.ps1 @@ -46,7 +46,7 @@ if (-NOT $SkipPreprocessing) { $preprocessingFilePath = ".\tools\Invoke-Preprocessing.ps1" . $preprocessingFilePath - $excludedFiles = @('.\.git\', '.\.gitignore', '.\.gitattributes', '.\.github\CODEOWNERS', '.\LICENSE', "$preprocessingFilePath", '*.png', '*.exe') + $excludedFiles = @('.\.git\', '.\.gitignore', '.\.gitattributes', '.\.github\CODEOWNERS', '.\.github\LICENSE', "$preprocessingFilePath", '*.png', '*.exe') $msg = "Pre-req: Code Formatting" Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -ProgressStatusMessage $msg -ThrowExceptionOnEmptyFilesList }