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 <arguments> #> +# 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"