From 650c8fe3acf17eb83d33f41c24e9dbb9beaad7f7 Mon Sep 17 00:00:00 2001 From: bbreslauer Date: Mon, 6 Jan 2025 18:01:32 -0800 Subject: [PATCH] Fix installation for Kwin 6 (#24) make install was not installing the files in the correct place, which meant that the script no longer worked. The reason is because the type was not being passed to the install and update commands, and so the default type was being used. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5d33428..848db00 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,8 @@ build: package install: build kpackagetool6 -t KWin/Script -s $(PROJECT_NAME) \ - && kpackagetool6 -u $(PKGFILE) \ - || kpackagetool6 -i $(PKGFILE) + && kpackagetool6 -t KWin/Script -u $(PKGFILE) \ + || kpackagetool6 -t KWin/Script -i $(PKGFILE) uninstall: kpackagetool6 -t KWin/Script -r $(PROJECT_NAME)