From c5c23d8d1804259a047086cc413e2f17f93ec36e Mon Sep 17 00:00:00 2001 From: Gabi <182965942+GabiNun@users.noreply.github.com> Date: Wed, 28 Jan 2026 19:37:53 +0200 Subject: [PATCH] Update Compile.ps1 (#3914) --- Compile.ps1 | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Compile.ps1 b/Compile.ps1 index a1ab15a9..cda56803 100644 --- a/Compile.ps1 +++ b/Compile.ps1 @@ -36,15 +36,6 @@ function Update-Progress { Write-Progress -Activity $Activity -Status $StatusMessage -PercentComplete $Percent } -$header = @" -################################################################################################################ -### ### -### WARNING: This file is automatically generated DO NOT modify this file directly as it will be overwritten ### -### ### -################################################################################################################ -"@ - - Update-Progress "Pre-req: Running Preprocessor..." 0 # Dot source the 'Invoke-Preprocessing' Function from 'tools/Invoke-Preprocessing.ps1' Script @@ -76,9 +67,6 @@ Invoke-Preprocessing -WorkingDir "$workingdir" -ExcludedFiles $excludedFiles -Pr Update-Progress "Pre-req: Allocating Memory" 0 $script_content = [System.Collections.Generic.List[string]]::new() -Update-Progress "Adding: Header" 5 -$script_content.Add($header) - Update-Progress "Adding: Version" 10 $script_content.Add($(Get-Content "scripts\start.ps1").replace('#{replaceme}',"$(Get-Date -Format yy.MM.dd)"))