diff --git a/install/__init__.py b/install/__init__.py index cfd96aa..79d5096 100644 --- a/install/__init__.py +++ b/install/__init__.py @@ -84,6 +84,8 @@ def _copy_dir(src, dst, ignore=[]): # type: (str, str, List[str]) -> None else: def _copy_dir(src, dst, ignore=[]): # type: (str, str, List[str]) -> None + if not os.path.exists(dst): + os.makedirs(dst) from distutils.dir_util import copy_tree for node in os.listdir(src): if node in ignore: