Skip to content

Commit

Permalink
Fix typo in Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlinford committed Sep 5, 2017
1 parent 9b99813 commit 8f8d6f1
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
Expand Up @@ -36,7 +36,7 @@ RM = rm -f
MV = mv -f
MKDIR = mkdir -p

VERSION = $(shell cat VERSION 2>&1 || ./.version.sh || echo "0.0.0")
VERSION = $(shell cat VERSION 2>/dev/null || ./.version.sh || echo "0.0.0")

# Get build system locations from configuration file or command line
ifneq ("$(wildcard setup.cfg)","")
Expand Down Expand Up @@ -195,4 +195,4 @@ $(CONDA_SRC):
$(call download,$(CONDA_URL),$(CONDA_SRC))

clean:
$(ECHO)$(RM) -r $(BUILDDIR)
$(ECHO)$(RM) -r $(BUILDDIR) VERSION

0 comments on commit 8f8d6f1

Please sign in to comment.