code-server-powershell: initial release

This commit is contained in:
aptalca
2020-04-15 20:05:29 -04:00
parent 5be8b23ea1
commit 77e7a3bd4b
7 changed files with 46 additions and 74 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/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