Skip to content

Commit f762d88

Browse files
authored
Fix typo in the messages (#3078)
1 parent a25fa75 commit f762d88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup/native-script.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ function Pause {
5555
}
5656

5757
# Actually installing all other dependencies
58-
# Install Chocolately
59-
Install "Chocolately(It's mandatory for the rest of the script)" "Installing Chocolately" "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))"
58+
# Install Chocolatey
59+
Install "Chocolatey (It's mandatory for the rest of the script)" "Installing Chocolatey" "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))"
6060

6161
if ((Get-Command "cinst" -ErrorAction SilentlyContinue) -eq $null) {
6262
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."
6363
Pause
6464
exit 1
6565
}
6666

67-
# Install dependenciess with Chocolately
67+
# Install dependenciess with Chocolatey
6868

6969
Install "Google Chrome" "Installing Google Chrome (required to debug NativeScript apps)" "cinst googlechrome --force --yes"
7070

0 commit comments

Comments
 (0)