From 2c859192a0584fe221cea05e9f0223679cda6bf0 Mon Sep 17 00:00:00 2001 From: Dave Thaler Date: Tue, 15 Aug 2023 13:19:46 -0700 Subject: [PATCH] Fix deploy_ebpf script Signed-off-by: Dave Thaler --- scripts/deploy-ebpf.ps1.in | 3 ++- scripts/setup_build/setup_build.vcxproj | 17 ++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/deploy-ebpf.ps1.in b/scripts/deploy-ebpf.ps1.in index 17351b9f9e..b790cfb628 100644 --- a/scripts/deploy-ebpf.ps1.in +++ b/scripts/deploy-ebpf.ps1.in @@ -245,6 +245,7 @@ OPTIONS: -m, --msi Copies MSI instead of individual files -l, --local Copies files to the local temp directory instead of into a VM -t, --test Includes files needed only for testing and debugging + -j, --jittest Includes files needed for JIT testing and debugging --vm Specifies the VM name, which defaults to "Windows 10 dev environment" '@ @@ -281,7 +282,7 @@ OPTIONS: $copy_redist=$true break } - { @("-t", "--jittest") -contains $_ } + { @("-j", "--jittest") -contains $_ } { $built_files= $built_runtime_files + $built_runtime_jit_files + $built_test_files $copy_redist=$true diff --git a/scripts/setup_build/setup_build.vcxproj b/scripts/setup_build/setup_build.vcxproj index 80b8a15c9d..da6a800cb5 100644 --- a/scripts/setup_build/setup_build.vcxproj +++ b/scripts/setup_build/setup_build.vcxproj @@ -65,6 +65,11 @@ popd true true true + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts true @@ -79,6 +84,11 @@ popd true true true + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts true @@ -114,6 +124,11 @@ popd true true true + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts + $(OutDir)scripts true @@ -338,4 +353,4 @@ copy "$(VC_CppRuntimeFilesPath_x64)\Microsoft.VC143.CRT" "$(OutDir)" - + \ No newline at end of file