From 73be1443a00b8176c1e7ba63f9ea6f49c48376a4 Mon Sep 17 00:00:00 2001 From: Robert Walls Date: Thu, 19 Jun 2014 16:47:14 -0400 Subject: [PATCH] Fixed issue preventing build. The variable "PATH" in the Makefile was shadowing the shell's PATH variable. This broke the build and resulted in errors such as "Cannot find command Python2.7." --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 458b0cf..914fc00 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,6 @@ clean: $(RM) -r _site _includes/pubs.html HOST := yourwebpage.com -PATH := www/ +PATHSVR := www/ deploy: clean all - rsync --compress --recursive --checksum --itemize-changes --delete -e ssh _site/ $(HOST):$(PATH) + rsync --compress --recursive --checksum --itemize-changes --delete -e ssh _site/ $(HOST):$(PATHSVR)