Update package version to 0.25.9

This commit is contained in:
2025-09-21 16:25:37 +03:00
parent f672ea26b2
commit a3a0275bdc
3 changed files with 16 additions and 3 deletions
+3 -1
View File
@@ -10,6 +10,9 @@ FILENAME="${DOWNLOAD##*/}"
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"/cli
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
# The build function is executed in the source directory
@@ -25,7 +28,6 @@ build() {
# Build command-line interface
cd "$BPM_SOURCE"/cli
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
cargo build --release --locked --offline
}