1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

Standardize on &> when not appending output

This commit is contained in:
Tim Byrne
2019-12-04 22:36:58 -06:00
parent f7485915ed
commit 4d23bbcf11
3 changed files with 19 additions and 19 deletions

View File

@@ -92,7 +92,7 @@ test:
cd /yadm && \
py.test -v $(testargs); \
else \
if command -v "docker-compose" >/dev/null 2>&1; then \
if command -v "docker-compose" &> /dev/null; then \
docker-compose run --rm testbed make test testargs="$(testargs)"; \
else \
echo "Sorry, this make test requires docker-compose to be installed."; \
@@ -192,7 +192,7 @@ sync-clock:
.PHONY: require-docker
require-docker:
@if ! command -v "docker" >/dev/null 2>&1; then \
@if ! command -v "docker" &> /dev/null; then \
echo "Sorry, this make target requires docker to be installed."; \
false; \
fi