File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -146,12 +146,14 @@ function PullInstall($path, $url)
146
146
}
147
147
148
148
function InstallPythonDep ($url , $filename ) {
149
+ Write-Host " Downloading and installing: $url "
149
150
(new-object System.Net.WebClient).DownloadFile($url , " $pwd \$filename " )
150
151
Start-Process - Wait $filename
151
152
del $filename
152
153
}
153
154
154
155
function InstallMSI ($url , $filename ) {
156
+ Write-Host " Downloading and installing: $url "
155
157
(new-object System.Net.WebClient).DownloadFile($url , " $pwd \$filename " )
156
158
Start-Process - Wait msiexec.exe - ArgumentList " /i $filename /qn"
157
159
del $filename
@@ -164,7 +166,9 @@ InstallMSI "http://freefr.dl.sourceforge.net/project/sevenzip/7-Zip/9.22/7z922-x
164
166
$ENV: PATH += " ;$ENV: ProgramFiles \7-Zip"
165
167
166
168
$filename = " Git-1.8.4-preview20130916.exe"
167
- (new-object System.Net.WebClient).DownloadFile(" https://msysgit.googlecode.com/files/$filename " , " $pwd \$filename " )
169
+ $url = " https://msysgit.googlecode.com/files/$filename "
170
+ Write-Host " Downloading and installing: $url "
171
+ (new-object System.Net.WebClient).DownloadFile($url , " $pwd \$filename " )
168
172
Start-Process - Wait - FilePath $filename - ArgumentList " /silent" - WindowStyle Hidden
169
173
del $filename
170
174
# In "%ProgramFiles% (x86)\Git\etc\gitconfig" set "autocrlf = false"
You can’t perform that action at this time.
0 commit comments