From 02e8cc8eb27d9957d08d1264ed0f0a0727163958 Mon Sep 17 00:00:00 2001 From: Rafal Tracilowski Date: Tue, 12 Feb 2019 22:50:58 -0800 Subject: [PATCH 1/3] Match script url with the one below --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59c1ab2b73..3b15b054a0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ You can also install a VSIX package from our [Releases page](https://github.com/ [Install from a VSIX](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix) instructions. The easiest way is through the command line: -``` +```bash code --install-extension PowerShell-.vsix ``` @@ -63,7 +63,7 @@ the `Install-Script` command. **Alternatively** you can download and execute the script directly from the web without the use of `Install-Script`. However we **highly recommend** that you -[read the script](https://github.com/PowerShell/vscode-powershell/blob/develop/scripts/Install-VSCode.ps1) +[read the script](https://git.io/vbxjj) first before running it in this way! ```powershell From 96fd266b73d73007636efb1dd1ac2e0f7fa66974 Mon Sep 17 00:00:00 2001 From: Rafal Tracilowski Date: Mon, 25 Feb 2019 19:58:05 -0800 Subject: [PATCH 2/3] Update link to install script to gh master branch --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b15b054a0..0131262a47 100644 --- a/README.md +++ b/README.md @@ -63,11 +63,11 @@ the `Install-Script` command. **Alternatively** you can download and execute the script directly from the web without the use of `Install-Script`. However we **highly recommend** that you -[read the script](https://git.io/vbxjj) +[read the script](https://raw.githubusercontent.com/PowerShell/vscode-powershell/master/scripts/Install-VSCode.ps1) first before running it in this way! ```powershell -iex (iwr https://git.io/vbxjj) +iex (iwr https://raw.githubusercontent.com/PowerShell/vscode-powershell/master/scripts/Install-VSCode.ps1) ``` ## Reporting Problems From 39d7dd2a6e52c2eed6002dc819f21c17946a5ee4 Mon Sep 17 00:00:00 2001 From: Robert Holt Date: Fri, 1 Mar 2019 20:31:45 -0800 Subject: [PATCH 3/3] powershell instead of bash Co-Authored-By: rafaltra --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0131262a47..eacfce2898 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ You can also install a VSIX package from our [Releases page](https://github.com/ [Install from a VSIX](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix) instructions. The easiest way is through the command line: -```bash +```powershell code --install-extension PowerShell-.vsix ```