Updated Updating (markdown)

This commit is contained in:
Omar Roth 2019-02-09 12:14:03 -06:00
parent 23964b9485
commit 8136d50f13

View File

@ -4,9 +4,11 @@
```bash
$ sudo -i -u invidious
$ cd invidious
$ currentVersion=$(git rev-list --max-count=1 --abbrev-commit HEAD)
$ git pull
$ latestVersion=$(git describe --tags `git rev-list --tags --max-count=1`)
$ git checkout $latestVersion
$ for i in `git rev-list --abbrev-commit $currentVersion..HEAD` ; do file=./config/migrate-scripts/migrate-db-$i.sh ; [ -f $file ] && $file ; done
$ shards
$ crystal build src/invidious.cr --release
$ exit
@ -17,7 +19,9 @@ $ sudo systemctl restart invidious.service
```bash
$ sudo -i -u invidious
$ cd invidious
$ currentVersion=$(git rev-list --max-count=1 --abbrev-commit HEAD)
$ git pull
$ for i in `git rev-list --abbrev-commit $currentVersion..HEAD` ; do file=./config/migrate-scripts/migrate-db-$i.sh ; [ -f $file ] && $file ; done
$ shards
$ crystal build src/invidious.cr --release
$ exit