From a1c89ea1dac194955fc20239d214409f926077cb Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Thu, 11 Jul 2019 23:20:39 +0000 Subject: [PATCH] [fuchsia] handle relative paths in local-sdk.py Change-Id: I420d0c5c4b37ed9eb0d56d8251f83ffcac372d07 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1696269 Reviewed-by: Fabrice de Gans-Riberi Reviewed-by: James Robinson Commit-Queue: James Robinson Cr-Commit-Position: refs/heads/master@{#676645} --- tools/fuchsia/local-sdk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fuchsia/local-sdk.py b/tools/fuchsia/local-sdk.py index 4cee6b6173126f..a95d6b4c327377 100755 --- a/tools/fuchsia/local-sdk.py +++ b/tools/fuchsia/local-sdk.py @@ -64,7 +64,7 @@ def main(args): EnsureEmptyDir(output_dir) original_dir = os.getcwd() - fuchsia_root = args[0] + fuchsia_root = os.path.abspath(args[0]) merged_manifest = None manifest_parts = set()