Skip to content

Commit 5a110a9

Browse files
committed
build.ps1 - Format params for consistency
Allow for positional params
1 parent d2acd9a commit 5a110a9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@ param(
1717
$CefVersion = "73.1.12+gee4b49f+chromium-73.0.3683.75",
1818

1919
[ValidateSet("tar.bz2","zip","7z")]
20-
[Parameter()]
20+
[Parameter(Position = 4)]
2121
[string] $Extension = "tar.bz2",
22+
23+
[Parameter(Position = 5)]
2224
[Switch] $NoDebugBuild
23-
[string] $Suffix
2425

26+
[Parameter(Position = 6)]
27+
[string] $Suffix
2528
)
2629

2730
Set-StrictMode -version latest

0 commit comments

Comments
 (0)