mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-02-02 10:22:45 -05:00
48 lines
1.1 KiB
Bash
Executable File
48 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Thin wrapper that calls the main Rust core build script
|
|
# This is called by Gradle build phases
|
|
#
|
|
# Usage:
|
|
# ./build-rust-core.sh [--force] [--release|--debug]
|
|
#
|
|
# The main build script lives at: /core/rust/build.sh
|
|
|
|
set -e
|
|
|
|
# Ensure cargo is in PATH (for Gradle build phases)
|
|
export PATH="$HOME/.cargo/bin:/usr/local/bin:/opt/homebrew/bin:$PATH"
|
|
|
|
# Script location
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
RUST_CORE_DIR="$(cd "$SCRIPT_DIR/../../../../core/rust" && pwd)"
|
|
JNILIBS_DIR="$SCRIPT_DIR/../app/src/main/jniLibs"
|
|
|
|
# Parse arguments to pass through
|
|
EXTRA_ARGS=""
|
|
FORCE_FLAG=""
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
--force)
|
|
FORCE_FLAG="--force"
|
|
shift
|
|
;;
|
|
--release)
|
|
EXTRA_ARGS=""
|
|
shift
|
|
;;
|
|
--debug)
|
|
EXTRA_ARGS="--fast"
|
|
shift
|
|
;;
|
|
*)
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# Call the main build script with incremental mode
|
|
cd "$RUST_CORE_DIR"
|
|
exec ./build.sh --android --incremental $FORCE_FLAG $EXTRA_ARGS
|