diff --git a/tools/build-release.sh b/tools/build-release.sh index b52a3362e..fb6478903 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -15,8 +15,8 @@ if [ "$1" = "--inside-docker" ]; then uv export --format requirements.txt > /tmp/requirements.txt uv pip install -r /tmp/requirements.txt ./configure - make VERSION="$VER" - make install DESTDIR=/"$VER-$PLTFM-$PLTFMVER-$ARCH" RUST_PROFILE=release + uv run make VERSION="$VER" + uv run make install DESTDIR=/"$VER-$PLTFM-$PLTFMVER-$ARCH" RUST_PROFILE=release cd /"$VER-$PLTFM-$PLTFMVER-$ARCH" && tar cvfz /release/clightning-"$VER-$PLTFM-$PLTFMVER-$ARCH".tar.gz -- * echo "Inside docker: build finished" exit 0