From 1248b8ef4a7b3747c9f8aaa5a077316d34ae7435 Mon Sep 17 00:00:00 2001 From: Peter Kasting Date: Mon, 27 Jan 2020 18:22:48 +0000 Subject: [PATCH] Fix a python invocation that wasn't replaced with vpython. This fixes autoninja on my Windows machine at home. Bug: none Change-Id: I3c245715c409bb2b30fcc3733bb097fc2a88f464 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2021755 Reviewed-by: Aaron Gable Commit-Queue: Peter Kasting --- autoninja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoninja b/autoninja index 4d1d3fa93..d9c79aa9d 100755 --- a/autoninja +++ b/autoninja @@ -5,7 +5,7 @@ # found in the LICENSE file. # Set unique build ID. -AUTONINJA_BUILD_ID="$(python -c "import uuid; print(uuid.uuid4())")" +AUTONINJA_BUILD_ID="$(vpython -c "import uuid; print(uuid.uuid4())")" export AUTONINJA_BUILD_ID if [ "$NINJA_SUMMARIZE_BUILD" == "1" ]; then