We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 936e1a2 commit 778ecf9Copy full SHA for 778ecf9
install.sh
@@ -32,16 +32,8 @@ while true; do
32
break
33
34
elif [[ $system == "CYGWIN" || "$(uname)" == * ]]; then
35
- packages=("git" "gh" "curl" "nodejs")
36
-
37
- for package in "${packages[@]}"; do
38
- if ! command -v "$package" &> /dev/null; then
39
- echo "Installing $package..."
40
- apt-cyg install "$package"
41
- else
42
- echo "$package is already installed."
43
- fi
44
- done
+ iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
+ choco install -y git gh curl nodejs
45
fi
46
47
done
0 commit comments