From fdffee68de37a615a220ffa95bb415905dc8014e Mon Sep 17 00:00:00 2001
From: Mark Pundsack <markpundsack@users.noreply.github.com>
Date: Thu, 21 Apr 2016 11:46:51 -0700
Subject: [PATCH] Escape spaces and parens in path

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 9f9f974..0fc3f25 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 gitlab_repo = https://gitlab.com/gitlab-org/gitlab-ce.git
 gitlab_shell_repo = https://gitlab.com/gitlab-org/gitlab-shell.git
 gitlab_workhorse_repo = https://gitlab.com/gitlab-org/gitlab-workhorse.git
-gitlab_development_root = $(shell pwd)
+gitlab_development_root = $(shell pwd | sed "s/[ \(\)]/\\\&/g")
 postgres_bin_dir = $(shell pg_config --bindir)
 postgres_replication_user = gitlab_replication
 postgres_dir = $(realpath ./postgresql)
-- 
GitLab