summaryrefslogtreecommitdiffstats
path: root/build/mixxx.py
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2013-07-10 12:32:05 +0200
committerDaniel Schürmann <daschuer@mixxx.org>2013-07-10 12:32:05 +0200
commit43f2a7b7eae94bbe95d10ad06ee90bd0c530e685 (patch)
tree8f26bb594e5f1966f006323161b4f4e356565a87 /build/mixxx.py
parent8460da19bfaa90e701dd1f0b7be361e8b1e7a5a8 (diff)
fix creation of cache folder if already exists.
Diffstat (limited to 'build/mixxx.py')
-rw-r--r--build/mixxx.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/mixxx.py b/build/mixxx.py
index 72fed2ce40..436d656409 100644
--- a/build/mixxx.py
+++ b/build/mixxx.py
@@ -382,9 +382,9 @@ class MixxxBuild(object):
print "shutil.copy", virtual_sconsign_file, sconsign_file
shutil.copy(old_virtual_sconsign_file, sconsign_file)
- # create build dir in cache folder for later move
- print "os.makedirs", branch_build_dir
- os.makedirs(branch_build_dir)
+ # create build dir in cache folder for later move
+ print "os.makedirs", branch_build_dir
+ os.makedirs(branch_build_dir)
with open(sconsign_branch_file, 'w+') as f:
print 'touch', sconsign_branch_file