From ec8648f4bce5914b5ced4eaf77a4d7d5c6826fd6 Mon Sep 17 00:00:00 2001 From: darkyzhou <7220778+darkyzhou@users.noreply.github.com> Date: Mon, 28 Apr 2025 00:37:55 +0800 Subject: [PATCH] fix(reh): use correct ripgrep.sh path (#2348) --- build/linux/package_reh.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build/linux/package_reh.sh b/build/linux/package_reh.sh index 4e51b2e..f7a9541 100755 --- a/build/linux/package_reh.sh +++ b/build/linux/package_reh.sh @@ -178,8 +178,8 @@ if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then pushd "../vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}" - if [[ -f "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" ]]; then - bash "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" "node_modules" + if [[ -f "../build/linux/${VSCODE_ARCH}/ripgrep.sh" ]]; then + bash "../build/linux/${VSCODE_ARCH}/ripgrep.sh" "node_modules" fi echo "Archiving REH" @@ -197,8 +197,8 @@ if [[ "${SHOULD_BUILD_REH_WEB}" != "no" ]]; then pushd "../vscode-reh-web-${VSCODE_PLATFORM}-${VSCODE_ARCH}" - if [[ -f "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" ]]; then - bash "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" "node_modules" + if [[ -f "../build/linux/${VSCODE_ARCH}/ripgrep.sh" ]]; then + bash "../build/linux/${VSCODE_ARCH}/ripgrep.sh" "node_modules" fi echo "Archiving REH-web"