From 99708f4e9fa34fa23ad8ab97ee646769b44a4cd1 Mon Sep 17 00:00:00 2001 From: Gess1t Date: Wed, 3 Apr 2024 02:49:36 +0200 Subject: [PATCH] Fix path of installer during hash computation --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index b7e1d6c..dafc185 100755 --- a/build.sh +++ b/build.sh @@ -29,8 +29,8 @@ fi # Compute all Plugin Hashes for version in "${versions[@]}" do - echo "Computing Touch-Gestures-Installer-$version.zip" - sha256sum $version/Touch-Gestures-Installer-$version.zip >> $output + echo "Computing Touch-Gestures.Installer-$version.zip" + sha256sum $version/Touch-Gestures.Installer-$version.zip >> $output done )