1
0
mirror of synced 2025-01-18 17:01:41 +03:00

update transfer DB_PASS

This commit is contained in:
Akolzin Dmitry 2020-02-28 16:32:18 +03:00
parent 24efcdf23a
commit 56b1eb81d2
2 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ compile_pot:
msgfmt resources/pot/retailcrm-es_ES.pot -o src/languages/retailcrm-es_ES.mo
install:
bash tests/bin/install.sh $(DB_NAME) $(DB_USER) $(DB_PASS) $(DB_HOST) $(WP_VERSION) $(WC_VERSION) $(SKIP_DB_CREATE)
bash tests/bin/install.sh $(DB_NAME) $(DB_USER) $(DB_HOST) $(WP_VERSION) $(WC_VERSION) $(DB_PASS) $(SKIP_DB_CREATE)
ifeq ($(USE_COMPOSER),1)
composer install
endif

View File

@ -8,10 +8,10 @@ fi
DB_NAME=$1
DB_USER=$2
DB_PASS=$3
DB_HOST=${4-localhost}
WP_VERSION=${5-latest}
WC_VERSION=${6-3.9.0}
DB_HOST=${3-localhost}
WP_VERSION=${4-latest}
WC_VERSION=${5-3.9.0}
DB_PASS=${6-''}
SKIP_DB_CREATE=${7-false}
WP_TESTS_DIR=${WP_TESTS_DIR-/tmp/wordpress-tests-lib}