From a9c438b4eae82de9da5d06cc1a328b0a702cd183 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Mon, 5 Dec 2022 15:19:17 -0400 Subject: [PATCH] chore: revert "build: change command to make bindir" This reverts commit c565233eff9f1ca778d90177ffb6ef8918f98ef8. this wasnt needed, i need to fix the bindir in the spec file --- Taskfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 426e990..54b5ea0 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -23,7 +23,7 @@ tasks: install: cmds: - - mkdir -p "{{.DESTDIR}}{{.BINDIR}}/" && install -m 0755 -v hilbish "{{.DESTDIR}}{{.BINDIR}}/hilbish" + - install -v -d "{{.DESTDIR}}{{.BINDIR}}/" && install -m 0755 -v hilbish "{{.DESTDIR}}{{.BINDIR}}/hilbish" - mkdir -p "{{.DESTDIR}}{{.LIBDIR}}" - cp -r libs docs emmyLuaDocs nature .hilbishrc.lua {{.DESTDIR}}{{.LIBDIR}} - grep -qxF "{{.DESTDIR}}{{.BINDIR}}/hilbish" /etc/shells || echo "{{.DESTDIR}}{{.BINDIR}}/hilbish" >> /etc/shells