diff --git a/.gitignore b/.gitignore index 3430d138..1aea44cb 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ modules *.meta game/.import/** .sconsign.dblite +.DS_Store .vs/* .kdev4/* @@ -20,4 +21,4 @@ game/android/build/* #ignore everything in the Engine Directory engine/* -*.blend1 \ No newline at end of file +*.blend1 diff --git a/SConstruct b/SConstruct index 01b8a003..f6442cb0 100644 --- a/SConstruct +++ b/SConstruct @@ -114,6 +114,9 @@ def copytree(src, dst): shutil.copytree(sp, dp) else: + if not os.path.isdir(dst): + os.makedirs(dst) + shutil.copy2(sp, dp) def update_engine():