Skip to content

Commit f53ac4c

Browse files
wget to curl because availability on git for windows
1 parent 2595d90 commit f53ac4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vnc-software/download_uvnc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
# This script needs: readlink, dirname, wget, sha256sum, unzip
2+
# This script needs: readlink, dirname, curl, sha256sum, unzip
33

44
# Execute with containing directory as current working directory
55
mydir=$(readlink -f "$0")
@@ -12,7 +12,7 @@ outdir=uvnc-windows
1212
downloadlink="https://uvnc.com/component/jdownloads/send/0-/470-ultravnc-1-4-6-zip.html"
1313
sha256sum=3afe90cf4f287ff066649225223d9950221ddfd273e5f4805c2f6fde39a5df83
1414

15-
wget "$downloadlink" -O "$outfile"
15+
curl "$downloadlink" > "$outfile"
1616
result=$?
1717

1818
if [ $result -eq 0 ]; then

0 commit comments

Comments
 (0)