From 525e66d5669b45f7b1ddb745515a48ce662216e3 Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Wed, 13 Dec 2017 18:53:34 +0100 Subject: [PATCH] Update release-tool with new AppStream info filename --- release-tool | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release-tool b/release-tool index 10c6a14c3..42cd3a1d6 100755 --- a/release-tool +++ b/release-tool @@ -264,13 +264,13 @@ checkChangeLog() { } checkAppStreamInfo() { - if [ ! -f share/linux/org.keepassxc.appdata.xml ]; then + if [ ! -f share/linux/org.keepassxc.KeePassXC.appdata.xml ]; then exitError "No AppStream info file found!" fi - grep -qPzo "" share/linux/org.keepassxc.appdata.xml + grep -qPzo "" share/linux/org.keepassxc.KeePassXC.appdata.xml if [ $? -ne 0 ]; then - exitError "'share/linux/org.keepassxc.appdata.xml' has not been updated to the '${RELEASE_NAME}' release!" + exitError "'share/linux/org.keepassxc.KeePassXC.appdata.xml' has not been updated to the '${RELEASE_NAME}' release!" fi }