Skip to content

Commit

Permalink
updated the get endpoints for install scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <65275144+dipankardas011@users.noreply.github.com>
  • Loading branch information
dipankardas011 committed Jun 2, 2024
1 parent 3f43f73 commit e4e2a08
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions content/en/docs/Getting started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ their are various method
{{% tab header="**Operating System**:" disabled=true /%}}
{{% tab header="Linux" %}}
```bash
curl -sfL https://get.ksctl.com | python3 -
curl -sfL https://get.ksctl.com/install/linux | python3 -
```
{{% /tab %}}
{{% tab header="MacOS" %}}
```bash
curl -sfL https://get.ksctl.com | python3 -
curl -sfL https://get.ksctl.com/install/macos | python3 -
```
{{% /tab %}}
{{% tab header="Windows" lang="sw" %}}
```ps1
iwr -useb https://raw.githubusercontent.com/ksctl/cli/main/install.ps1 | iex
iwr -useb https://get.ksctl.com/install/windows | iex
```
{{% /tab %}}
{{< /tabpane >}}
Expand All @@ -46,17 +46,17 @@ iwr -useb https://raw.githubusercontent.com/ksctl/cli/main/install.ps1 | iex
{{% tab header="**Operating System**:" disabled=true /%}}
{{% tab header="Linux" %}}
```bash
bash <(curl -s https://raw.githubusercontent.com/ksctl/cli/main/scripts/uninstall.sh)
bash <(curl -s https://get.ksctl.com/uninstall/linux)
```
{{% /tab %}}
{{% tab header="MacOS" %}}
```bash
zsh <(curl -s https://raw.githubusercontent.com/ksctl/cli/main/scripts/uninstall.sh)
zsh <(curl -s https://get.ksctl.com/uninstall/macos)
```
{{% /tab %}}
{{% tab header="Windows" lang="sw" %}}
```ps1
iwr -useb https://raw.githubusercontent.com/ksctl/cli/main/scripts/uninstall.ps1 | iex
iwr -useb https://get.ksctl.com/uninstall/windows | iex
```
{{% /tab %}}
{{< /tabpane >}}
Expand Down

0 comments on commit e4e2a08

Please sign in to comment.