mirror of
https://gitea.invidious.io/iv-org/documentation.git
synced 2024-08-15 00:53:34 +00:00
Run migrations scripts from oldest to newest
This commit is contained in:
parent
386c76042d
commit
dab4b49ae0
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ $ currentVersion=$(git rev-list --max-count=1 --abbrev-commit HEAD)
|
|||
$ git pull
|
||||
$ latestVersion=$(git describe --tags --abbrev=0)
|
||||
$ 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
|
||||
$ for i in `git rev-list --reverse --abbrev-commit $currentVersion..HEAD` ; do file=./config/migrate-scripts/migrate-db-$i.sh ; [ -f $file ] && $file ; done
|
||||
$ shards update && shards install
|
||||
$ crystal build src/invidious.cr --release
|
||||
$ exit
|
||||
|
@ -21,7 +21,7 @@ $ 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
|
||||
$ for i in `git rev-list --reverse --abbrev-commit $currentVersion..HEAD` ; do file=./config/migrate-scripts/migrate-db-$i.sh ; [ -f $file ] && $file ; done
|
||||
$ shards update && shards install
|
||||
$ crystal build src/invidious.cr --release
|
||||
$ exit
|
||||
|
|
Loading…
Reference in a new issue