tauri-test-app/build
2025-01-22 14:20:51 +01:00

14 lines
257 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
pushd tta-cli
cargo build --release
popd
pushd tta-app
pnpm install --frozen-lockfile
pnpm tauri build
popd
echo "tta-cli can be found at target/release/tta-cli"
echo "tta-app can be found at target/release/tta-app"