Skip to content

Commit

Permalink
Fix file permissions for systemwide installation
Browse files Browse the repository at this point in the history
  • Loading branch information
timoloewe committed Dec 5, 2016
1 parent 9689916 commit ad873a0
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 @@ -16,10 +16,12 @@ install-systemwide: schema locales
echo "Installing plugin files to $(SYSTEM_PLUGIN_DIR) ..."; \
sudo rm -r -f $(SYSTEM_PLUGIN_DIR)lLyrics/; \
sudo cp -r ./lLyrics/ $(SYSTEM_PLUGIN_DIR); \
sudo chmod -R 755 $(SYSTEM_PLUGIN_DIR)lLyrics/; \
else \
echo "Installing plugin files to $(SYSTEM64_PLUGIN_DIR) ..."; \
sudo rm -r -f $(SYSTEM64_PLUGIN_DIR)lLyrics/; \
sudo cp -r ./lLyrics/ $(SYSTEM64_PLUGIN_DIR); \
sudo chmod -R 755 $(SYSTEM64_PLUGIN_DIR)lLyrics/; \
fi
@echo "Done!"

Expand Down Expand Up @@ -56,5 +58,3 @@ update-po-files:
lang=`basename $$i .po`; \
intltool-update -g messages $$lang; \
done


0 comments on commit ad873a0

Please sign in to comment.