From f951c176d7e265ac00b2e6dd89e35f9b307e1af9 Mon Sep 17 00:00:00 2001 From: hc-github-team-tf-azure <> Date: Fri, 15 Dec 2023 10:42:15 +0100 Subject: [PATCH] automation: fixing the checkout path The Github Actions agents aren't setting `$TMPPATH` so let's just output this into `./pandora-from-main` for now --- .gitignore | 1 + scripts/automation-determine-changes-to-api-definitions.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index eaadc1e34a7..c007c5cff11 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,7 @@ vendor/ # Temp directories outputs/ +pandora-from-main/ # .net binaries [Dd]ebug/ diff --git a/scripts/automation-determine-changes-to-api-definitions.sh b/scripts/automation-determine-changes-to-api-definitions.sh index 7cdf5860e1b..5c060456ef7 100755 --- a/scripts/automation-determine-changes-to-api-definitions.sh +++ b/scripts/automation-determine-changes-to-api-definitions.sh @@ -80,7 +80,7 @@ function runStaticIdentifierDetector { } function main { - local tempDirectory="${TMPDIR}/pandora-from-main" + local tempDirectory="./pandora-from-main" local initialApiDefinitionsDirectory="${DIR}/api-definitions" local updatedApiDefinitionsDirectory="${tempDirectory}/api-definitions" local outputDirectory="$1"