From c5b94232980982af3766f5042b7c96f4c854c65c Mon Sep 17 00:00:00 2001 From: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com> Date: Sun, 19 Oct 2025 20:21:05 +0200 Subject: [PATCH] Engineering - add debug messages to verify that the SUID flag is removed from a file (#272175) --- .../azure-pipelines/linux/steps/product-build-linux-compile.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/azure-pipelines/linux/steps/product-build-linux-compile.yml b/build/azure-pipelines/linux/steps/product-build-linux-compile.yml index 950faecccef..4a73211e216 100644 --- a/build/azure-pipelines/linux/steps/product-build-linux-compile.yml +++ b/build/azure-pipelines/linux/steps/product-build-linux-compile.yml @@ -400,5 +400,7 @@ steps: # SBOM generation uses hard links which are not supported by the Linux kernel # for files that have the SUID bit set, so we need to remove the SUID bit from # the chrome-sandbox file. + sudo ls -l $(Agent.BuildDirectory)/VSCode-linux-$(VSCODE_ARCH)/chrome-sandbox sudo chmod u-s $(Agent.BuildDirectory)/VSCode-linux-$(VSCODE_ARCH)/chrome-sandbox + sudo ls -l $(Agent.BuildDirectory)/VSCode-linux-$(VSCODE_ARCH)/chrome-sandbox displayName: Move artifacts to out directory