From c80a6b1580d8d21638e72eb1b8eca688f28c5bde Mon Sep 17 00:00:00 2001 From: Emil Tabakov Date: Tue, 22 Aug 2017 13:44:26 +0300 Subject: [PATCH] Fix typo in the messages --- setup/native-script.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/native-script.ps1 b/setup/native-script.ps1 index 1543c6924f..605fd226a4 100644 --- a/setup/native-script.ps1 +++ b/setup/native-script.ps1 @@ -55,8 +55,8 @@ function Pause { } # Actually installing all other dependencies -# Install Chocolately -Install "Chocolately(It's mandatory for the rest of the script)" "Installing Chocolately" "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" +# Install Chocolatey +Install "Chocolatey (It's mandatory for the rest of the script)" "Installing Chocolatey" "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" if ((Get-Command "cinst" -ErrorAction SilentlyContinue) -eq $null) { Write-Host -ForegroundColor Red "Chocolatey is not installed or not configured properly. Download it from https://chocolatey.org/, install, set it up and run this script again." @@ -64,7 +64,7 @@ if ((Get-Command "cinst" -ErrorAction SilentlyContinue) -eq $null) { exit 1 } -# Install dependenciess with Chocolately +# Install dependenciess with Chocolatey Install "Google Chrome" "Installing Google Chrome (required to debug NativeScript apps)" "cinst googlechrome --force --yes"