Skip to content

Commit

Permalink
Use appropiate kquitapp5/6 version in install/uninstall scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
alex1701c committed Jun 30, 2024
1 parent ec2a027 commit 2c97f3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ sudo make install
# KRunner needs to be restarted for the changes to be applied
if pgrep -x krunner > /dev/null
then
killall krunner
kquitapp"$krunner_version" krunner
fi


echo "Installation finished !";
echo "Installation finished!";
8 changes: 4 additions & 4 deletions uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

set -e
cd build
sudo make uninstall

xargs echo "Uninstalling files: " < install_manifest.txt
xargs sudo rm < install_manifest.txt

# KRunner needs to be restarted for the changes to be applied
krunner_version=$(krunner --version | grep -oP "(?<=krunner )\d+")
if pgrep -x krunner > /dev/null
then
kquitapp5 krunner
kquitapp"$krunner_version" krunner
fi

0 comments on commit 2c97f3e

Please sign in to comment.