From 5c44e5d36b81b35092e905a9a55a19767cbd55a8 Mon Sep 17 00:00:00 2001 From: Timofey <5527315+epanchee@users.noreply.github.com> Date: Thu, 29 Aug 2024 13:05:46 +0400 Subject: [PATCH] Fix build script. See https://github.com/astroport-fi/astroport-core/pull/428 --- scripts/build_release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build_release.sh b/scripts/build_release.sh index 9724903..7750167 100755 --- a/scripts/build_release.sh +++ b/scripts/build_release.sh @@ -6,6 +6,6 @@ set -o pipefail projectPath=$(cd "$(dirname "${0}")" && cd ../ && pwd) docker run --rm -v "$projectPath":/code \ - --mount type=volume,source="$(basename "$projectPath")_cache",target=/code/target \ - --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ - cosmwasm/workspace-optimizer:0.15.1 \ No newline at end of file + --mount type=volume,source="$(basename "$projectPath")_cache",target=/target \ + --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ + cosmwasm/optimizer:0.15.1 \ No newline at end of file