Skip to content

Commit

Permalink
switching to copy_tree instead of copytree
Browse files Browse the repository at this point in the history
  • Loading branch information
llimllib committed Feb 4, 2012
1 parent 8d57105 commit edc957b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def install():
sanitized_name = re.sub("[^\w]", "", config["name"])
output_dir = join(config["path"], sanitized_name)
print "installing to %s" % output_dir
copytree("build", output_dir)
copy_tree("build", output_dir)

def pull():
#copy the project from mapbox to osm-bright
Expand Down

0 comments on commit edc957b

Please sign in to comment.