tts / build.sh
okewunmi's picture
Create build.sh
fd3c8cb verified
raw
history blame
179 Bytes
#!/bin/bash
set -e
echo "Starting build process..."
# Make sure install.sh is executable
chmod +x install.sh
# Run the installation
./install.sh
echo "Build process complete!"