From 763d0d7acb4c273ec304fba05878912534e9b4cc Mon Sep 17 00:00:00 2001 From: Cryostrixx Date: Wed, 25 Sep 2024 11:42:02 -0700 Subject: [PATCH] Add param block to enable auto-completion of arguments from the command line --- windev.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/windev.ps1 b/windev.ps1 index 53363abe..fb1be81f 100644 --- a/windev.ps1 +++ b/windev.ps1 @@ -17,6 +17,13 @@ Run in PowerShell > .\windev.ps1 #> +# Define the arguments for the WinUtil script; enables argument auto-completion. +param ( + [switch]$Debug, + [string]$Config, + [switch]$Run +) + # Speed up download-related tasks by suppressing the output of Write-Progress. $ProgressPreference = "SilentlyContinue"