Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1097)

Unified Diff: recipes.py

Issue 2648723002: Make --deps-path=- put the temp dir in the real temp folder. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes.py
diff --git a/recipes.py b/recipes.py
index fbb6d878526f0dc6287d9b85d6d312dd1d00d1ca..ab9cc93e867c42f5ff6ba28e442ad1d28234f155 100755
--- a/recipes.py
+++ b/recipes.py
@@ -577,7 +577,7 @@ def main():
args.deps_path)
if args.deps_path == '-':
# "-" means use a temporary deps path.
- temp_deps_dir = tempfile.mkdtemp(dir=ROOT_DIR, suffix='_deps')
+ temp_deps_dir = tempfile.mkdtemp(suffix='_recipe_deps')
args.deps_path = temp_deps_dir
if args.deps_path:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698