From eeafd1e5cfee01795e8ad7361404dfd4ae1288a0 Mon Sep 17 00:00:00 2001 From: devins2518 Date: Thu, 25 Mar 2021 11:04:42 -0500 Subject: [PATCH] fix: add hilbish to /etc/shells (#9) --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index cf68fec..046597b 100644 --- a/Makefile +++ b/Makefile @@ -9,12 +9,14 @@ install: @install -v -d "$(BINDIR)/" && install -m 0755 -v hilbish "$(BINDIR)/hilbish" @mkdir -p "$(LIBDIR)" @cp libs preload.lua .hilbishrc.lua "$(LIBDIR)" -r + @echo /usr/bin/hilbish >> /etc/shells @echo "Hilbish Installed" uninstall: @rm -vrf \ "$(BINDIR)/hilbish" \ "$(LIBDIR)" + @sed '/\/usr\/bin\/hilbish/d' /etc/shells @echo "Hilbish Uninstalled" clean: