Skip to content

Commit

Permalink
Makefile: Hide stderr for 'command -v' calls
Browse files Browse the repository at this point in the history
Don't spam people with:

  make: command: Command not found

Signed-off-by: W. Trevor King <wking@tremily.us>
  • Loading branch information
wking committed May 24, 2016
1 parent b30d97e commit 633f7cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

DOCKER ?= $(shell command -v docker)
PANDOC ?= $(shell command -v pandoc)
DOCKER ?= $(shell command -v docker 2>/dev/null)
PANDOC ?= $(shell command -v pandoc 2>/dev/null)
# These docs are in an order that determines how they show up in the PDF/HTML docs.
DOC_FILES := \
version.md \
Expand Down

0 comments on commit 633f7cf

Please sign in to comment.