From 03df2f030443d966c018eac28a02bd41223c53a0 Mon Sep 17 00:00:00 2001 From: bill Date: Thu, 1 Mar 2012 15:02:21 -0500 Subject: [PATCH] expand user paths so ~ works; fixes #39 --- make.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/make.py b/make.py index 0e96193..4422f28 100755 --- a/make.py +++ b/make.py @@ -7,12 +7,14 @@ from json import loads, dumps from glob import glob from shutil import rmtree -from os.path import join, isdir +from os.path import join, isdir, expanduser from collections import defaultdict from configure import config from lib.utils import copy_tree +config["path"] = expanduser(config["path"]) + def clean(): if isdir("build"): rmtree("build")