Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Summpot committed Aug 14, 2023
1 parent e4493db commit 9aef7e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ New-MainNuspec -OutputDir $NuspecsDir -Version $Version -ProjectName "tree-sitte
New-Nuspec -RID $RID -OutputDir $NuspecsDir -Version $Version -ProjectName "tree-sitter"
Build-CMakeProject -RID $RID -CMakeBuildDir $CMakeBuildDir -OutputDir $NuspecsDir -ProjectDir $TreeSitterDir
Get-ChildItem -Path $ParsersDir | ForEach-Object {
Build-NodeGypProject -ProjectDir $_ -OutputDir $NuspecsDir -RID $RID
Build-NodeGypProject -ProjectDir $_.FullName -OutputDir $NuspecsDir -RID $RID
New-MainNuspec -OutputDir $NuspecsDir -Version $Version -ProjectName $_.Name
New-Nuspec -RID $RID -OutputDir $NuspecsDir -Version $Version -ProjectName $_.Name
}
2 changes: 1 addition & 1 deletion scripts/build.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function Build-CMakeProject {

function Build-NodeGypProject {
Param(
[string] $ProjectDir,
$ProjectDir,
[string] $OutputDir,
[string] $RID
)
Expand Down

0 comments on commit 9aef7e2

Please sign in to comment.