diff --git a/pwsh/README.md b/pwsh/README.md deleted file mode 100644 index 2f5a0f8..0000000 --- a/pwsh/README.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: PowerShell (pwsh alias) -homepage: https://webinstall.dev/powershell -tagline: | - Alias for https://webinstall.dev/powershell -alias: powershell -description: | - See https://webinstall.dev/powershell ---- - -Alias for https://webinstall.dev/powershell diff --git a/pwsh/install.ps1 b/pwsh/install.ps1 deleted file mode 100644 index 9f1561b..0000000 --- a/pwsh/install.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/pwsh - -Write-Output "'pwsh@$Env:WEBI_TAG' is an alias for 'powershell@$Env:WEBI_VERSION'" - -$PwshBootUrl = "$Env:WEBI_HOST/powershell@$Env:WEBI_VERSION" -$PwshBootScript = "$HOME\.local\tmp\install-pwsh-boot.ps1" -Invoke-DownloadUrl -Force -URL $PwshBootUrl -Path $PwshBootScript -powershell -ExecutionPolicy Bypass $PwshBootScript diff --git a/pwsh/install.sh b/pwsh/install.sh deleted file mode 100644 index 8a64617..0000000 --- a/pwsh/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -set -e -set -u - -__redirect_alias_powershell() { - echo "'pwsh@${WEBI_TAG:-stable}' is an alias for 'powershell@${WEBI_VERSION-}'" - WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"} - curl -fsSL "$WEBI_HOST/powershell@${WEBI_VERSION-}" | sh -} - -__redirect_alias_powershell