From 06f71b71d7b2c50102022fe40cbb4af5a573d609 Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Tue, 24 Jun 2025 22:11:33 -0600 Subject: [PATCH] Fix script paths --- ci/release_locally.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ci/release_locally.sh b/ci/release_locally.sh index db6a3d8..a3b47d9 100755 --- a/ci/release_locally.sh +++ b/ci/release_locally.sh @@ -2,9 +2,9 @@ set -eux if [[ -n "${BUILD_DEBUG:-}" ]]; then export BUILD_DEBUG - CMAKE_BUILD_TYPE=Debug ./reproduce.sh + CMAKE_BUILD_TYPE=Debug ci/reproduce.sh fi -CMAKE_BUILD_TYPE=Release ./reproduce.sh -CMAKE_BUILD_TYPE=Release-assertions ./reproduce.sh -./install.sh -./release.sh +CMAKE_BUILD_TYPE=Release ci/reproduce.sh +CMAKE_BUILD_TYPE=Release-assertions ci/reproduce.sh +ci/install.sh +ci/release.sh