diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.md | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -24,10 +24,10 @@ install: all mkdir -p $(HOME)/.config/xbot/ touch $(HOME)/.config/xbot/profile.ini chmod 600 $(HOME)/.config/xbot/profile.ini - sudo $(INSTALL_PROGRAM) $(TARGET_EXEC) $(bindir)/xbot + $(INSTALL_PROGRAM) $(TARGET_EXEC) $(bindir)/xbot uninstall: - sudo rm -f $(bindir)/xbot + rm -f $(bindir)/xbot clean: rm -r build @@ -32,7 +32,7 @@ Install this software from source on GNU/Linux systems like this: git clone https://cgit.xengineering.eu/xbot cd xbot make all -make install +sudo make install ``` Make sure to have a XMPP account for you and your bot. There are a lot of free |