Skip to content

Commit

Permalink
fix install error if misspelling
Browse files Browse the repository at this point in the history
  • Loading branch information
Romanitho committed Jun 6, 2022
1 parent ca61dec commit 929e106
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion winget-install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,10 @@ foreach ($App_Full in $AppIDs){
else{
#Check if app exists on Winget Repo
$Exists = Confirm-Exist $AppID
Install-App $AppID $AppArgs
if ($Exists){
#Install
Install-App $AppID $AppArgs
}
}

#Log current App
Expand Down

0 comments on commit 929e106

Please sign in to comment.