Skip to content

Commit

Permalink
Windows - packages_install.ps1 - bugfix (foreach)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-revay committed Oct 13, 2023
1 parent 98944e9 commit 9ba6624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Windows_10/packages_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ $WINGET_PACKAGES = @(
)

# TODO split to multiple lines
$WINGET_PACKAGES | ForEach-Object { winget install --accept-source-agreements --accept-package-agreements --silent --disable-interactivity -e --id [$PSItem] }
$WINGET_PACKAGES | ForEach-Object { winget install --accept-source-agreements --accept-package-agreements --silent --disable-interactivity -e --id $PSItem }
winget upgrade --all --accept-source-agreements --accept-package-agreements --silent --disable-interactivity

# Pip packages
Expand Down

0 comments on commit 9ba6624

Please sign in to comment.