summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorNikita Potapenko <dev.potapy4@hotmail.com>2019-03-16 17:41:47 +0200
committerJan Kotas <jkotas@microsoft.com>2019-03-16 08:41:47 -0700
commitfe851740636b89c052af316576b8d47f0c5edd06 (patch)
treebbb35d08307f041d0e61fa0cb2914aec9523a005 /tests/scripts
parent456dcb6f8724b21ea413aed11df44eeec649d047 (diff)
downloadcoreclr-fe851740636b89c052af316576b8d47f0c5edd06.tar.gz
coreclr-fe851740636b89c052af316576b8d47f0c5edd06.tar.bz2
coreclr-fe851740636b89c052af316576b8d47f0c5edd06.zip
Fix typo (#23300)
.Net -> .NET
Diffstat (limited to 'tests/scripts')
-rw-r--r--tests/scripts/format.py10
-rwxr-xr-xtests/scripts/run-pmi-diffs.py10
2 files changed, 10 insertions, 10 deletions
diff --git a/tests/scripts/format.py b/tests/scripts/format.py
index b622cf4625..5ed90968c9 100644
--- a/tests/scripts/format.py
+++ b/tests/scripts/format.py
@@ -69,7 +69,7 @@ def main(argv):
my_env = os.environ
- # Download .Net CLI
+ # Download .NET CLI
dotnetcliUrl = ""
dotnetcliFilename = ""
@@ -88,7 +88,7 @@ def main(argv):
if not os.path.isdir(dotnetcliPath):
raise
- print("Downloading .Net CLI")
+ print("Downloading .NET CLI")
if platform == 'Linux':
dotnetcliUrl = "https://dotnetcli.azureedge.net/dotnet/Sdk/2.1.402/dotnet-sdk-2.1.402-linux-x64.tar.gz"
dotnetcliFilename = os.path.join(dotnetcliPath, 'dotnetcli-jitutils.tar.gz')
@@ -106,10 +106,10 @@ def main(argv):
urlretrieve(dotnetcliUrl, dotnetcliFilename)
if not os.path.isfile(dotnetcliFilename):
- print("Did not download .Net CLI!")
+ print("Did not download .NET CLI!")
return -1
- # Install .Net CLI
+ # Install .NET CLI
if platform == 'Linux' or platform == 'OSX':
tar = tarfile.open(dotnetcliFilename)
@@ -127,7 +127,7 @@ def main(argv):
if not os.path.isfile(os.path.join(dotnetcliPath, dotnet)):
- print("Did not extract .Net CLI from download")
+ print("Did not extract .NET CLI from download")
return -1
# Download bootstrap
diff --git a/tests/scripts/run-pmi-diffs.py b/tests/scripts/run-pmi-diffs.py
index d1e5954b93..e02f409dc3 100755
--- a/tests/scripts/run-pmi-diffs.py
+++ b/tests/scripts/run-pmi-diffs.py
@@ -437,7 +437,7 @@ def do_pmi_diffs():
# Download .NET CLI
- log('Downloading .Net CLI')
+ log('Downloading .NET CLI')
dotnetcliUrl = ""
dotnetcliFilename = ""
@@ -469,12 +469,12 @@ def do_pmi_diffs():
urlretrieve(dotnetcliUrl, dotnetcliFilename)
if not os.path.isfile(dotnetcliFilename):
- log('ERROR: Did not download .Net CLI')
+ log('ERROR: Did not download .NET CLI')
return 1
- # Install .Net CLI
+ # Install .NET CLI
- log('Unpacking .Net CLI')
+ log('Unpacking .NET CLI')
if not testing:
if Is_windows:
@@ -486,7 +486,7 @@ def do_pmi_diffs():
tar.close()
if not os.path.isfile(os.path.join(dotnetcliPath, dotnet_tool)):
- log('ERROR: did not extract .Net CLI from download')
+ log('ERROR: did not extract .NET CLI from download')
return 1
# Add dotnet CLI to PATH we'll use to spawn processes.