Formatting, only pull CL in curl

This commit is contained in:
Heavybullets8 2022-08-23 13:02:09 -06:00
parent c4d5214350
commit cd836ba537

View File

@ -4,22 +4,22 @@ args=("$@")
self_update() {
latest_ver=$(git describe --tags "$(git rev-list --tags --max-count=1)")
git fetch --tags &> /dev/null
git fetch --tags &>/dev/null
echo "🅂 🄴 🄻 🄵"
echo "🅄 🄿 🄳 🄰 🅃 🄴"
if [[ "$hs_version" != "$latest_ver" ]] ; then
echo "Found a new version of HeavyScript, updating myself..."
git checkout "$latest_ver"
git checkout "$latest_ver" &>/dev/null
count=0
for i in "${args[@]}"
do
[[ "$i" == "--self-update" ]] && unset "args[$count]" && break
((count++))
done
echo "Updating from:"
echo "$hs_version"
echo "Updating To:"
curl --silent "https://api.github.com/repos/HeavyBullets8/heavy_script/releases/latest" | jq -r .tag_name,.body
echo "Updating from: $hs_version"
echo "Updating To: $latest_ver"
echo "Changelog:"
curl --silent "https://api.github.com/repos/HeavyBullets8/heavy_script/releases/latest" | jq -r .body
[[ -z ${args[*]} ]] && echo -e "No more arguments, exiting..\n\n" && exit
echo -e "Running the new version...\n\n"
sleep 5