1
0
Fork 0

Fix production.yaml.new config generation

This commit is contained in:
Chocobozzz 2023-11-07 10:24:58 +01:00
parent 5dd39c07a7
commit 2d4274769e
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 3 additions and 1 deletions

View File

@ -81,6 +81,8 @@ cd "$LATEST_VERSION_DIRECTORY"
# Launch yarn to check if we have all required dependencies
NOCLIENT=1 yarn install --production --pure-lockfile
OLD_VERSION_DIRECTORY=$(readlink "$PEERTUBE_PATH/peertube-latest")
# Switch to latest code version
rm -rf $PEERTUBE_PATH/peertube-latest
ln -s "$LATEST_VERSION_DIRECTORY" $PEERTUBE_PATH/peertube-latest
@ -93,7 +95,7 @@ echo ""
if [ -x "$(command -v git)" ]; then
cd $PEERTUBE_PATH
git merge-file -p config/production.yaml "$LATEST_VERSION_DIRECTORY/config/production.yaml.example" "peertube-latest/config/production.yaml.example" | tee "config/production.yaml.new" > /dev/null
git merge-file -p config/production.yaml "$OLD_VERSION_DIRECTORY/config/production.yaml.example" "peertube-latest/config/production.yaml.example" | tee "config/production.yaml.new" > /dev/null
echo "$PEERTUBE_PATH/config/production.yaml.new generated"
echo "You can review it and replace your existing production.yaml configuration"
else