thinglaunch

A simple command and password prompter for X11.
git clone git://r-36.net/thinglaunch
Log | Files | Refs | LICENSE

commit dfd9734eae6f1adea3f1afc84cb82beee283da84
parent 4e3211426e2b708b932040e32befb60aa40f04d9
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sat,  8 Feb 2020 16:44:55 +0100

Makefile: always return success and process when creating a symlink

Signed-off-by: Christoph Lohmann <20h@r-36.net>

Diffstat:
Makefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -28,8 +28,8 @@ ${OBJ}: config.h config.mk ${NAME}: ${OBJ} @echo CC -o $@ @${CC} -o $@ ${OBJ} ${LDFLAGS} - @ln -s ${NAME} thingaskpass 2>/dev/null; true - @ln -s ${NAME} thingsudoaskpass 2>/dev/null; true + @ln -s ${NAME} thingaskpass 2>/dev/null || true + @ln -s ${NAME} thingsudoaskpass 2>/dev/null || true clean: @echo cleaning