From 2c659bb653da454f2573bd7dddfd4e250483824c Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Wed, 10 Mar 2021 14:11:11 +0100 Subject: [PATCH 1/2] jitutils M2M renaming reaction --- src/tests/Common/scripts/run-pmi-diffs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/Common/scripts/run-pmi-diffs.py b/src/tests/Common/scripts/run-pmi-diffs.py index a4f1d3ecde718..106137eaeaefd 100755 --- a/src/tests/Common/scripts/run-pmi-diffs.py +++ b/src/tests/Common/scripts/run-pmi-diffs.py @@ -502,7 +502,7 @@ def do_pmi_diffs(): # Clone jitutils - command = 'git clone -b master --single-branch %s %s' % (Jitutils_url, jitutilsPath) + command = 'git clone -b main --single-branch %s %s' % (Jitutils_url, jitutilsPath) log(command) returncode = 0 if testing else os.system(command) if returncode != 0: From 798ee72390fb6e23a7ea63d76a4e070ad0271d54 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Wed, 10 Mar 2021 14:11:48 +0100 Subject: [PATCH 2/2] Update format.py --- src/tests/Common/scripts/format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/Common/scripts/format.py b/src/tests/Common/scripts/format.py index 47089497631f1..1ba1ecc7ce63a 100644 --- a/src/tests/Common/scripts/format.py +++ b/src/tests/Common/scripts/format.py @@ -118,7 +118,7 @@ def main(argv): elif platform == 'windows': bootstrapFilename = "bootstrap.cmd" - bootstrapUrl = "https://raw.githubusercontent.com/dotnet/jitutils/master/" + bootstrapFilename + bootstrapUrl = "https://raw.githubusercontent.com/dotnet/jitutils/main/" + bootstrapFilename with TempDir() as temp_location: bootstrapPath = os.path.join(temp_location, bootstrapFilename)