From 802d7dc8e14706bcf01975a8961cf7dc2eac4ee8 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 17 Jun 2021 03:19:19 -0300 Subject: Makefile: Ignore failure when creating ./git-permalink file In case of failure, a "make clean" will fix it. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a40c237..baf161d 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,8 @@ manpages = \ all: git-permalink git-permalink: src/git-permalink.sh - $(do_subst) < $? > $@-t - chmod +x $@-t - mv $@-t $@ + $(do_subst) < $? > $@ + chmod +x $@ check: all sh tests/cli-opts.sh -- cgit v1.2.3