From a287cd4260bc0b31d550c5e52b50027a87747179 Mon Sep 17 00:00:00 2001 From: Robo Date: Wed, 2 Oct 2024 09:35:33 +0900 Subject: [PATCH] ci: fix paths to apt retry script (#230274) --- build/azure-pipelines/oss/product-build-pr-cache-linux.yml | 4 ++-- build/azure-pipelines/web/product-build-web.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/azure-pipelines/oss/product-build-pr-cache-linux.yml b/build/azure-pipelines/oss/product-build-pr-cache-linux.yml index 3186c09b455..72cd33cdd75 100644 --- a/build/azure-pipelines/oss/product-build-pr-cache-linux.yml +++ b/build/azure-pipelines/oss/product-build-pr-cache-linux.yml @@ -45,8 +45,8 @@ steps: - script: | set -e - ../linux/apt-retry.sh sudo apt-get update - ../linux/apt-retry.sh sudo apt-get install -y libkrb5-dev + ./build/azure-pipelines/linux/apt-retry.sh sudo apt-get update + ./build/azure-pipelines/linux/apt-retry.sh sudo apt-get install -y libkrb5-dev displayName: Setup system services condition: and(succeeded(), ne(variables.NODE_MODULES_RESTORED, 'true')) diff --git a/build/azure-pipelines/web/product-build-web.yml b/build/azure-pipelines/web/product-build-web.yml index 2c5753ec89c..44122a2aad0 100644 --- a/build/azure-pipelines/web/product-build-web.yml +++ b/build/azure-pipelines/web/product-build-web.yml @@ -59,8 +59,8 @@ steps: - script: | set -e - ../linux/apt-retry.sh sudo apt-get update - ../linux/apt-retry.sh sudo apt-get install -y libkrb5-dev + ./build/azure-pipelines/linux/apt-retry.sh sudo apt-get update + ./build/azure-pipelines/linux/apt-retry.sh sudo apt-get install -y libkrb5-dev displayName: Setup system services condition: and(succeeded(), ne(variables.NODE_MODULES_RESTORED, 'true'))