1
0
Fork 0

Fix path to Peertube installation in upgrade.sh

This commit is contained in:
Julien Rabier 2023-08-31 11:06:23 +02:00 committed by Chocobozzz
parent d2640682f6
commit 0216c3485d
1 changed files with 2 additions and 2 deletions

View File

@ -91,10 +91,10 @@ echo "=========================================================="
echo ""
if [ -x "$(command -v git)" ]; then
cd /var/www/peertube
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
echo "/var/www/peertube/config/production.yaml.new generated"
echo "$PEERTUBE_PATH/config/production.yaml.new generated"
echo "You can review it and replace your existing production.yaml configuration"
else
echo "git command not found: unable to generate config/production.yaml.new configuration file based on your existing production.yaml configuration"