Fix error with changelog
This commit is contained in:
parent
a9e720cf22
commit
1513b43163
1 changed files with 1 additions and 2 deletions
|
@ -29,7 +29,6 @@ function update() {
|
|||
|
||||
pushd "${tempdir}"
|
||||
echo "Downloading..."
|
||||
echo "Debug - ${tempdir} ${tarball_url}"
|
||||
curl -L -O "${tarball_url}"
|
||||
curl -L -O "${gpg_url}"
|
||||
|
||||
|
@ -69,7 +68,7 @@ echo "Checking for version updates..."
|
|||
if version_gt "${remote_version}" "v${current_version}"
|
||||
then
|
||||
echo "New version found: ${remote_version}"
|
||||
changelog=$(echo "${github_data} | jq -r '.body'")
|
||||
changelog=$(echo "${github_data}" | jq -r '.body')
|
||||
echo "Changes in this version:"
|
||||
echo "${changelog}"
|
||||
asset_name=$(echo "${github_data}" | jq -r '.assets[] |
|
||||
|
|
Loading…
Add table
Reference in a new issue