Private
Public Access
1
0

Fix: Source cargo env in build-alpine.sh for rustup toolchain

This commit is contained in:
2026-04-13 22:22:48 +00:00
parent b5eda96fd4
commit f8153d0b01

View File

@ -8,6 +8,13 @@ set -e
echo "=== Linux Patch API - Alpine Build Script ==="
echo ""
# Source cargo environment (for rustup-installed toolchain in CI)
if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"
fi
# Check if running on Alpine
# Check if running on Alpine
if ! command -v abuild &> /dev/null; then
echo "Installing Alpine build tools..."