mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-29 13:03:09 +03:00
4e76f42d8a
* add cargo example * change name to communication * update scripts to set environment vars for example * remove build key
26 lines
873 B
Bash
26 lines
873 B
Bash
#!/usr/bin/env sh
|
|
# Note: Script must be run like this `. .init_env.sh` to setup variables for your current shell
|
|
# define relative paths
|
|
|
|
DistPath='tauri/examples/communication/dist'
|
|
SrcPath='tauri/examples/communication/src-tauri'
|
|
|
|
echo "Setting up enviroment Variables"
|
|
|
|
# check if relative paths exist
|
|
if [ -d "${DistPath}" ]||[ -d "${SrcPath}" ]
|
|
then
|
|
# Convert to absolute paths
|
|
DistPath="$(cd "${DistPath}" && pwd -P)"
|
|
SrcPath="$(cd "${SrcPath}" && pwd -P)"
|
|
|
|
# export enviromental variables
|
|
export TAURI_DIST_DIR=${DistPath}
|
|
export TAURI_DIR=${SrcPath}
|
|
echo "Variables set, ready to work!"
|
|
|
|
else
|
|
# if directories don't exist then exit script and tell user run script in root dir.
|
|
echo "Error: Variables are not setup properly. Please run from Tauri Root directory '. .scripts/init_env.sh'"
|
|
fi
|