gradio/website/reload_website.sh
Ali Abdalla 8ca7f9c43b
Fix Web Tracker Script (#2308)
* fix if condition

* fix logic

* typo
2022-09-23 13:39:01 -07:00

15 lines
283 B
Bash

#!/bin/bash
set -e
. /home/ubuntu/.bashrc
export PATH="/usr/local/bin:/usr/bin:/bin"
git pull > /tmp/git_changes.txt
if grep -q "Already up to date." /tmp/git_changes.txt; then
echo "NO CHANGES"
else
echo "Reloading..."
docker-compose build
docker-compose up -d
fi