diff options
author | EuAndreh <eu@euandre.org> | 2021-06-17 03:19:19 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-06-17 03:19:25 -0300 |
commit | 802d7dc8e14706bcf01975a8961cf7dc2eac4ee8 (patch) | |
tree | ae22a214bf6e0ce93e050542644db26918526325 | |
parent | Update aux/workflow/assert-changelog.sh (diff) | |
download | git-permalink-802d7dc8e14706bcf01975a8961cf7dc2eac4ee8.tar.gz git-permalink-802d7dc8e14706bcf01975a8961cf7dc2eac4ee8.tar.xz |
Makefile: Ignore failure when creating ./git-permalink file
In case of failure, a "make clean" will fix it.
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |