Skip to content

Commit

Permalink
Fix installation for Kwin 6 (darkstego#24)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bbreslauer authored Jan 7, 2025
1 parent e93c6a8 commit 650c8fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 650c8fe

Please sign in to comment.