From 6d84d358efb35569abe0561d111218e4f03b2b13 Mon Sep 17 00:00:00 2001 From: "Artem V. Ageev" Date: Mon, 4 Nov 2024 17:42:55 +0200 Subject: [PATCH] fix make.ps1 --- make.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make.ps1 b/make.ps1 index 29f328d..e61e015 100644 --- a/make.ps1 +++ b/make.ps1 @@ -41,14 +41,14 @@ Function PrivMain { 'build' { PrivPrepare If (Test-Path -Path 'use') { - Start-Process -PassThru -Wait -FilePath 'git' -ArgumentList 'submodule', 'update', '--recursive', '--init' - Start-Process -PassThru -Wait -FilePath 'git' -ArgumentList 'submodule', 'update', '--recursive', '--remote' + Start-Process -Wait -FilePath 'git' -ArgumentList 'submodule', 'update', '--recursive', '--init' + Start-Process -Wait -FilePath 'git' -ArgumentList 'submodule', 'update', '--recursive', '--remote' Get-ChildItem -Filter '*.lpk' -Recurse -File –Path 'use' | ForEach-Object { Start-Process -PassThru -Wait -FilePath 'lazbuild' -ArgumentList '--add-package-link', $_.Name } } Get-ChildItem -Filter '*.lpi' -Recurse -File –Path 'src' | ForEach-Object { - Start-Process -PassThru -Wait -FilePath 'lazbuild' -ArgumentList '--no-write-project', '--recursive', '--build-mode=release', $_.Name + Start-Process -Wait -FilePath 'lazbuild' -ArgumentList '--no-write-project', '--recursive', '--build-mode=release', $_.Name } } Default {