Skip to content

Commit

Permalink
fix: Container.init.ps1 - splatting InstallPackages ( Fixes #279, Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Sep 25, 2024
1 parent 657dd92 commit f72d7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Container.init.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Get-ChildItem -Path $PSScriptRoot |
# If we have packages to install
if ($InstallPackages) {
# install the packages
apt-get update && apt-get install -y "$($InstallPackages -join ' ')" && apt-get clean | Out-Host
apt-get update && apt-get install -y @installPackages && apt-get clean | Out-Host
}

# Create a new profile
Expand Down

0 comments on commit f72d7c9

Please sign in to comment.