Browse Source

[fix] Define final_path variable in restore script

Jérôme Lebleu 9 năm trước cách đây
mục cha
commit
e926de87ae
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      scripts/restore

+ 2 - 1
scripts/restore

@@ -11,7 +11,8 @@ app=${!#}
 backup_dir=$1
 
 # Restore sources & data
-sudo cp -a $backup_dir/sources/. /var/www/$app
+final_path=/var/www/$app
+sudo cp -a $backup_dir/sources/. $final_path
 
 # Restore permissions to app files
 # you may need to make some file and/or directory writeable by www-data (nginx user)