tauri/.scripts/setup.sh
2021-04-12 13:47:59 +02:00

29 lines
733 B
Bash

#!/usr/bin/env sh
# Copyright 2019-2021 Tauri Programme within The Commons Conservancy
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT
echo "Building API definitions..."
cd tooling/api
yarn && yarn build
cd ../..
echo "Building the Tauri Rust CLI..."
cd tooling/cli.rs
cargo install --path .
cd ../..
echo "Tauri Rust CLI installed. Run it with '$ cargo tauri [COMMAND]'."
echo "Do you want to install the Node.js CLI?"
select yn in "Yes" "No"; do
case $yn in
Yes )
cd tooling/cli.js
yarn && yarn build && yarn link
cd ../..
echo "Tauri Node.js CLI installed. Run it with '$ tauri [COMMAND]'."
break;;
No ) break;;
esac
done