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 be2ef1d commit 05a56a2Copy full SHA for 05a56a2
cg
@@ -24,7 +24,14 @@ esac
24
25
# update
26
do_update () {
27
- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/excel-code-generator/code-generator/master/install.sh)"
+ case "`uname`"
28
+ in MINGW*)
29
+ powershell "iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/excel-code-generator/code-generator/master/install.ps1'))"
30
+ ;;
31
+ *)
32
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/excel-code-generator/code-generator/master/install.sh)"
33
34
+ esac
35
}
36
37
if [ "update" = "$1" ];then
0 commit comments