@@ -16,21 +16,21 @@ weight: 10
1616#### Install latest version
1717
1818{{< command >}}
19- iwr -useb https://ghproxy.com/https:// raw.githubusercontent.com/iyear/tdl/master/scripts/install.ps1 | iex
19+ iwr -useb https://raw.githubusercontent.com/iyear/tdl/master/scripts/install.ps1 | iex
2020{{< /command >}}
2121
2222#### Install with ` ghproxy.com `
2323
2424{{< command >}}
25- $Script=iwr -useb https://ghproxy.com/https:// raw.githubusercontent.com/iyear/tdl/master/scripts/install.ps1 ;
25+ $Script=iwr -useb https://raw.githubusercontent.com/iyear/tdl/master/scripts/install.ps1 ;
2626$Block=[ ScriptBlock] ::Create($Script); Invoke-Command -ScriptBlock $Block -ArgumentList "", "$True"
2727{{< /command >}}
2828
2929#### Install specific version
3030
3131{{< command >}}
3232$Env: TDLVersion = "VERSION"
33- $Script=iwr -useb https://ghproxy.com/https:// raw.githubusercontent.com/iyear/tdl/master/scripts/install.ps1 ;
33+ $Script=iwr -useb https://raw.githubusercontent.com/iyear/tdl/master/scripts/install.ps1 ;
3434$Block=[ ScriptBlock] ::Create($Script); Invoke-Command -ScriptBlock $Block -ArgumentList "$Env: TDLVersion "
3535{{< /command >}}
3636
@@ -42,19 +42,19 @@ $Block=[ScriptBlock]::Create($Script); Invoke-Command -ScriptBlock $Block -Argum
4242#### Install latest version
4343
4444{{< command >}}
45- curl -sSL https://ghproxy.com/https:// raw.githubusercontent.com/iyear/tdl/master/scripts/install.sh | sudo bash
45+ curl -sSL https://raw.githubusercontent.com/iyear/tdl/master/scripts/install.sh | sudo bash
4646{{< /command >}}
4747
4848#### Install with ` ghproxy.com `
4949
5050{{< command >}}
51- curl -sSL https://ghproxy.com/https:// raw.githubusercontent.com/iyear/tdl/master/scripts/install.sh | sudo bash -s -- --proxy
51+ curl -sSL https://raw.githubusercontent.com/iyear/tdl/master/scripts/install.sh | sudo bash -s -- --proxy
5252{{< /command >}}
5353
5454#### Install specific version
5555
5656{{< command >}}
57- curl -sSL https://ghproxy.com/https:// raw.githubusercontent.com/iyear/tdl/master/scripts/install.sh | sudo bash -s -- --version VERSION
57+ curl -sSL https://raw.githubusercontent.com/iyear/tdl/master/scripts/install.sh | sudo bash -s -- --version VERSION
5858{{< /command >}}
5959
6060{{< /tab >}}
0 commit comments