1
0
mirror of https://github.com/fleschutz/PowerShell.git synced 2025-07-18 13:14:18 +02:00

Replaced curl by Invoke-WebRequest

This commit is contained in:
Markus Fleschutz
2020-06-23 17:02:00 +00:00
parent 54879a3143
commit a21d3cdfdc
2 changed files with 2 additions and 2 deletions

@ -6,5 +6,5 @@
# Source: github.com/fleschutz/PowerShell
# License: CC0
#
(curl wttr.in/Moon -UserAgent "curl" ).Content
(Invoke-WebRequest http://wttr.in/Moon -UserAgent "curl" ).Content
exit 0

@ -6,5 +6,5 @@
# Source: github.com/fleschutz/PowerShell
# License: CC0
#
(curl de.wttr.in/Berlin -UserAgent "curl" ).Content
(Invoke-WebRequest http://wttr.in/Berlin -UserAgent "curl" ).Content
exit 0