tools: add the flatpak commit info to flatpak-releases script output.

This is useful when wanting to check someone is using the last flatpak build in
a bug report.
This commit is contained in:
Jehan 2022-12-26 18:18:54 +01:00
parent 26ff19a89d
commit 9347c9d5fd
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ do
release_subject=`echo "$package_info" | grep Subject: |sed 's/^ *Subject: //'`
if [ "$install" -eq -1 ]; then
# In non-install mode, just list the whole release.
printf "%2d: %s [%s]\n" $release_number "$release_subject" "$release_date"
printf "%2d: %s [%s] - app-commit: %s\n" $release_number "$release_subject" "$release_date" "$release_commit"
elif [ "$install" -eq "$release_number" ]; then
install_commit=$release_commit
break