mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -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
|
# update build hash
|
||||||
.PHONY: buildhash
|
.PHONY: buildhash
|
||||||
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); \
|
newhash=$$(git rev-parse --short=8 HEAD || echo dev); \
|
||||||
if [ "$$oldhash" != "$$newhash" ]; then \
|
if [ "$$oldhash" != "$$newhash" ]; then \
|
||||||
echo $$newhash > meta/buildhash; \
|
echo $$newhash > meta/buildhash; \
|
||||||
|
|
Loading…
Reference in a new issue