Skip to content

Commit

Permalink
update releasedocs.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
icmoldovan committed May 23, 2024
1 parent 2db8018 commit cc1aa35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions releaseDocs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ if($checkBranch){
}

git checkout -b gh-pages_temp
$items = ls
$items = Get-ChildItem
foreach ($item in $items){
if (($item.Name -ne "15.2") -and ($item.Name -ne "16.1") -and ($item.Name -ne "16.2") -and ($item.Name -ne "17.0")){
if (($item.Name -ne "15.2") -and ($item.Name -ne "16.1") -and ($item.Name -ne "16.2") -and ($item.Name -ne "17.0") -and ($item.Name -ne "17.1") -and ($item.Name -ne "17.2")){
git rm $item -r
}
}
Expand Down

0 comments on commit cc1aa35

Please sign in to comment.