Updating install script

This commit is contained in:
Ryan Ward
2026-05-15 08:48:34 -05:00
parent 57222e208e
commit 83e2be2a94
+2 -4
View File
@@ -89,12 +89,10 @@ fi
# ---------- 5. Build ----------
info "Building $BUNDLE_BIN (release)..."
cargo build --release --bin "$BUNDLE_BIN" --package "$BUNDLE_PKG" \
--manifest-path "$CLONE_DIR/Cargo.toml"
pushd "$CLONE_DIR" > /dev/null
cargo build --release --bin "$BUNDLE_BIN" --package "$BUNDLE_PKG"
info "Bundling $APP_NAME..."
# cargo-bundle does not support --manifest-path; run from repo root
pushd "$CLONE_DIR" > /dev/null
cargo bundle --release --bin "$BUNDLE_BIN" --package "$BUNDLE_PKG"
popd > /dev/null