mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Hide the Makefile buildhash rule verbosity
This commit is contained in:
parent
8960d12aac
commit
598897e82b
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -41,7 +41,7 @@ pyenv:
|
|||
# update build hash
|
||||
.PHONY: buildhash
|
||||
buildhash:
|
||||
oldhash=$$(test -f meta/buildhash && cat meta/buildhash || true); \
|
||||
@oldhash=$$(test -f meta/buildhash && cat meta/buildhash || true); \
|
||||
newhash=$$(git rev-parse --short=8 HEAD || echo dev); \
|
||||
if [ "$$oldhash" != "$$newhash" ]; then \
|
||||
echo $$newhash > meta/buildhash; \
|
||||
|
|
Loading…
Reference in a new issue