From 9ce4c29b64eeea65752154ac19226f9335d5cd38 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Thu, 22 Feb 2024 01:07:03 +0100 Subject: [PATCH] ci(linux): fix artifact files rights [skip ci] --- package_linux_bin.sh | 3 ++- package_linux_reh.sh | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package_linux_bin.sh b/package_linux_bin.sh index fb31285..58fb8e3 100755 --- a/package_linux_bin.sh +++ b/package_linux_bin.sh @@ -9,6 +9,8 @@ fi tar -xzf ./vscode.tar.gz +chown -R root:root vscode + ls -la cd vscode || { echo "'vscode' dir not found"; exit 1; } @@ -19,7 +21,6 @@ export VSCODE_SYSROOT_PREFIX='-glibc-2.17' ls -la .git git clean -xfd . -yarn cache clean for i in {1..5}; do # try 5 times yarn --cwd build --frozen-lockfile --check-files && break diff --git a/package_linux_reh.sh b/package_linux_reh.sh index 6c2fb30..0adb3b5 100755 --- a/package_linux_reh.sh +++ b/package_linux_reh.sh @@ -9,6 +9,8 @@ fi tar -xzf ./vscode.tar.gz +chown -R root:root vscode + cd vscode || { echo "'vscode' dir not found"; exit 1; } export VSCODE_PLATFORM='linux'