Skip to content

Commit

Permalink
Remove unused parameter from download_dependencies.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
NogginBops committed Mar 5, 2024
1 parent d16e52a commit 78a47db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions download_dependencies.ps1
@@ -1,5 +1,4 @@
Param([parameter(Mandatory=$true,Position=0)][String]$GLFW_VERSION,
[parameter(Mandatory=$true,Position=1)][String]$GLFW_SHORT_VERSION)
Param([parameter(Mandatory=$true,Position=0)][String]$GLFW_VERSION)

New-Item -ItemType Directory -Force -Path tmp

Expand Down
2 changes: 1 addition & 1 deletion make_nuget.ps1
Expand Up @@ -14,7 +14,7 @@ if($currentBranch -eq "develop") {
$buildVersionResult = "0-pre" + (Get-Date).ToUniversalTime().ToString("yyyyMMddHHmmss")
}

./download_dependencies.ps1 $GLFW_VERSION $GLFW_SHORT_VERSION
./download_dependencies.ps1 $GLFW_VERSION


$header = Get-Content([System.IO.Path]::Combine($projectDir, ".\tmp\src\include\GLFW\glfw3.h")) | Out-String
Expand Down

0 comments on commit 78a47db

Please sign in to comment.