mirror of https://github.com/grafana/grafana.git
Use more portable output redirection (#62686)
Signed-off-by: Jack Baldry <jack.baldry@grafana.com>
This commit is contained in:
parent
3133e6c689
commit
c012bb2b2e
|
@ -1,6 +1,6 @@
|
||||||
.PHONY: pull docs docs-quick docs-no-pull docs-test docs-local-static
|
.PHONY: pull docs docs-quick docs-no-pull docs-test docs-local-static
|
||||||
|
|
||||||
PODMAN = $(shell if command -v podman &>/dev/null; then echo podman; else echo docker; fi)
|
PODMAN = $(shell if command -v podman >/dev/null 2>&1; then echo podman; else echo docker; fi)
|
||||||
IMAGE = grafana/docs-base:latest
|
IMAGE = grafana/docs-base:latest
|
||||||
CONTENT_PATH = /hugo/content/docs/grafana/latest
|
CONTENT_PATH = /hugo/content/docs/grafana/latest
|
||||||
LOCAL_STATIC_PATH = ../../website/static
|
LOCAL_STATIC_PATH = ../../website/static
|
||||||
|
|
Loading…
Reference in New Issue