Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eng
diff options
context:
space:
mode:
authorBill Wert <billwert@microsoft.com>2021-07-07 22:08:08 +0300
committerGitHub <noreply@github.com>2021-07-07 22:08:08 +0300
commit1c79e60368455d4bbe123b10d827179bae937662 (patch)
treea591aac7ed49b802e92298c2b00a761dcef9d7b8 /eng
parentb9020ea1ee41e2459ed44511c9a493e8f25ab16d (diff)
Fix LLVM path (#55244)
Diffstat (limited to 'eng')
-rw-r--r--eng/testing/performance/performance-setup.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/eng/testing/performance/performance-setup.ps1 b/eng/testing/performance/performance-setup.ps1
index 078cad080a4..9ed93d17fbd 100644
--- a/eng/testing/performance/performance-setup.ps1
+++ b/eng/testing/performance/performance-setup.ps1
@@ -153,9 +153,9 @@ if ($iOSMono) {
mkdir $WorkItemDirectory
}
if($iOSLlvmBuild) {
- Copy-Item -path "$SourceDirectory\iosHelloWorld\nollvm" $PayloadDirectory\iosHelloWorld\llvm -Recurse
+ Copy-Item -path "$SourceDirectory\iosHelloWorld\llvm" $PayloadDirectory\iosHelloWorld\llvm -Recurse
} else {
- Copy-Item -path "$SourceDirectory\iosHelloWorld\llvm" $PayloadDirectory\iosHelloWorld\nollvm -Recurse
+ Copy-Item -path "$SourceDirectory\iosHelloWorld\nollvm" $PayloadDirectory\iosHelloWorld\nollvm -Recurse
}
$SetupArguments = $SetupArguments -replace $Architecture, 'arm64'