Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tests/Common/scripts/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/tests/Common/scripts/run-pmi-diffs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down