Skip to content

Commit

Permalink
packages_install.ps1 - split long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-revay authored Oct 13, 2023
1 parent 05029d7 commit 7f6a115
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Windows_10/packages_install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,12 @@ $WINGET_PACKAGES = @(
'Doist.Todoist'
)

# TODO split to multiple lines
$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
$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
# TODO some packages below need to be fixed (or just installed globally?)
Expand Down

0 comments on commit 7f6a115

Please sign in to comment.