Bash scripts conf - Set backup to false by default, fixed typo and added a warning

This commit is contained in:
BarbzYHOOL
2018-02-24 16:28:25 +01:00
committed by Barbz
parent ed4de4dd64
commit d9de91bb42

View File

@@ -74,11 +74,11 @@ DATABASES=(
OUTPUT_FOLDER="$AC_PATH_ROOT/env/dist/sql/" OUTPUT_FOLDER="$AC_PATH_ROOT/env/dist/sql/"
# #
# Enable following flag # Set to true if you want to backup your db
# if you want backup your db # before importing the SQL with the db_assembler
# before import sql with db_assembler # Do not forget to stop the database before doing so
#
BACKUP_ENABLE=true BACKUP_ENABLE=false
BACKUP_FOLDER="$AC_PATH_ROOT/env/dist/sql/backup/" BACKUP_FOLDER="$AC_PATH_ROOT/env/dist/sql/backup/"