Skip to content

Commit

Permalink
move from wget to curl
Browse files Browse the repository at this point in the history
  • Loading branch information
mosajjal committed Oct 23, 2023
1 parent 44d07ae commit 600297e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ configPath="/opt/sniproxy/sniproxy.yaml"
yqPath="/opt/sniproxy/yq"

# download sniproxy
wget -O $execCommand http://bin.n0p.me/sniproxy
curl -L -o $execCommand http://bin.n0p.me/sniproxy
# make it executable
chmod +x $execCommand

# download yq
wget -O $yqPath http://bin.n0p.me/yq
curl -L -o $yqPath http://bin.n0p.me/yq
# make it executable
chmod +x $yqPath

Expand Down

0 comments on commit 600297e

Please sign in to comment.