We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84cac20 commit a981292Copy full SHA for a981292
eng/helix/content/installappruntime.sh
@@ -6,6 +6,7 @@ set -e
6
appRuntimePath=$1
7
output_dir=$2
8
framework=$3
9
+rid=$4
10
tmpDir=./tmpRuntime
11
12
echo "Installing shared framework from $appRuntimePath"
@@ -15,5 +16,5 @@ mkdir -p $tmpDir
15
16
unzip sharedFx.zip -d $tmpDir
17
mkdir -p $output_dir
18
echo "Copying to $output_dir"
-cp $tmpDir/runtimes/win-x64/lib/$framework/* $output_dir
19
-cp $tmpDir/runtimes/win-x64/native/* $output_dir
+cp $tmpDir/runtimes/$rid/lib/$framework/* $output_dir
20
+cp $tmpDir/runtimes/$rid/native/* $output_dir
0 commit comments