Merge pull request #419 from pete1019/patch-6

check if files exists, if not get from latest
This commit is contained in:
Alex 2021-11-03 14:08:00 -04:00 committed by GitHub
commit b9673da846
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,7 +93,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