From 848d81b96bc5e7a6a2176af9024f6d069f0383be Mon Sep 17 00:00:00 2001 From: "Mr.k" Date: Sat, 31 Aug 2024 09:55:27 +0300 Subject: [PATCH] Revert "Update Exclude Files List for Preprocessing in 'Compile.ps1' Script" This reverts commit 674ab0308b71fd6c3215922268c6979f50425a11. --- Compile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Compile.ps1 b/Compile.ps1 index 75998956..c9d43555 100644 --- a/Compile.ps1 +++ b/Compile.ps1 @@ -47,7 +47,7 @@ if (-NOT $SkipPreprocessing) { $preprocessingFilePath = ".\tools\Invoke-Preprocessing.ps1" . $preprocessingFilePath - $excludedFiles = @('.\.git\', '.\.gitignore', '.\.gitattributes', '.\.github\CODEOWNERS', '.\.github\LICENSE', "$preprocessingFilePath", '*.png', '*.exe') + $excludedFiles = @('.\.git\', '.\.gitignore', '.\.gitattributes', '.\.github\CODEOWNERS', '.\LICENSE', "$preprocessingFilePath", '*.png', '*.exe') $msg = "Pre-req: Code Formatting" Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -ProgressStatusMessage $msg -ThrowExceptionOnEmptyFilesList }