mirror of
https://github.com/linuxserver/docker-mods.git
synced 2026-03-23 00:05:28 +08:00
11 lines
226 B
Plaintext
11 lines
226 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
if [ -f "/powershell.deb" ]; then
|
|
echo "Installing PowerShell"
|
|
apt-get update
|
|
apt-get install -y /powershell.deb
|
|
rm /powershell.deb
|
|
else
|
|
echo "PowerShell already installed, skipping"
|
|
fi
|