10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Pulling latest..."
|
|
git pull
|
|
echo "Building..."
|
|
npm run build
|
|
echo "Restarting service..."
|
|
sudo systemctl restart aaronai-web
|
|
echo "Done."
|