mirror of
https://github.com/gravitl/netmaker.git
synced 2025-02-26 17:15:23 +08:00
check if files exists, if not get from latest
This commit is contained in:
parent
8b230f3152
commit
29a20abba5
1 changed files with 8 additions and 1 deletions
|
@ -92,7 +92,14 @@ esac
|
|||
|
||||
echo "Binary = $dist"
|
||||
|
||||
wget -nv -O netclient https://github.com/gravitl/netmaker/releases/download/$VERSION/$dist
|
||||
url="https://github.com/gravitl/netmaker/releases/download/$VERSION/$dist"
|
||||
if curl --output /dev/null --silent --head --fail "$url"; then
|
||||
echo "Downloading $dist $VERSION"
|
||||
wget -nv -O netclient $url
|
||||
else
|
||||
echo "Downloading $dist latest"
|
||||
wget -nv -O netclient https://github.com/gravitl/netmaker/releases/download/latest/$dist
|
||||
fi
|
||||
chmod +x netclient
|
||||
sudo ./netclient join -t $KEY
|
||||
rm -f netclient
|
||||
|
|
Loading…
Reference in a new issue