Skip to content

Commit c1bc469

Browse files
committed
Recent bower versions error out when the --config.cwd option has a dot in it
(like .tmp) does. Renaming the temporary directory fixes this. Commit ready for merge.
1 parent ebfe4ca commit c1bc469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

djangobwr/management/commands/bower_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def handle(self, *args, **options):
182182
self.with_version = options.get("with_version")
183183
self.keep_packages = options.get("keep_packages")
184184

185-
temp_dir = getattr(settings, 'BWR_APP_TMP_FOLDER', '.tmp')
185+
temp_dir = getattr(settings, 'BWR_APP_TMP_FOLDER', 'tmp')
186186
temp_dir = os.path.abspath(temp_dir)
187187

188188
# finders

0 commit comments

Comments
 (0)