You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
517 B
19 lines
517 B
#!/bin/bash |
|
# Setup script to clone and prepare Wyoming Piper from official source |
|
|
|
set -e |
|
|
|
WYOMING_PIPER_DIR="./wyoming-piper" |
|
|
|
if [ -d "$WYOMING_PIPER_DIR" ]; then |
|
echo "Wyoming Piper directory already exists. Updating..." |
|
cd "$WYOMING_PIPER_DIR" |
|
git pull |
|
cd .. |
|
else |
|
echo "Cloning Wyoming Piper from official repository..." |
|
git clone https://github.com/rhasspy/wyoming-piper.git "$WYOMING_PIPER_DIR" |
|
fi |
|
|
|
echo "Wyoming Piper setup complete!" |
|
echo "You can now run: docker-compose up --build"
|
|
|