@@ -163,7 +163,7 @@ update: docker-stop composer-install docker-rebuild config-import clear-cache #
163163
164164drupal-install : docker-running
165165 $(CURDIR ) /bin/drush \
166- site- install minimal \
166+ site: install minimal \
167167 -vv \
168168 --yes \
169169 --account-name=admin \
@@ -177,30 +177,30 @@ config-init: docker-running
177177 echo " Config found. Processing setting uuid..." ; \
178178 cat ./config/system.site.yml | \
179179 grep uuid | tail -c +7 | head -c 36 | \
180- $(CURDIR ) /bin/drush config- set -y system.site uuid - ; \
180+ $(CURDIR ) /bin/drush config: set -y system.site uuid - ; \
181181 else \
182182 echo " Config is empty. Skipping uuid init..." ; \
183183 fi ;
184184
185185config-import : docker-running
186186 @if [ -e ./config/system.site.yml ]; then \
187187 echo " Config found. Importing config..." ; \
188- $(CURDIR ) /bin/drush config- import sync --yes ; \
189- $(CURDIR ) /bin/drush config- import sync --yes ; \
188+ $(CURDIR ) /bin/drush config: import --yes ; \
189+ $(CURDIR ) /bin/drush config: import --yes ; \
190190 else \
191191 echo " Config is empty. Skipping import..." ; \
192192 fi ;
193193
194194config-export : docker-running
195- $(CURDIR ) /bin/drush config- export sync --yes
195+ $(CURDIR ) /bin/drush config: export --yes
196196
197197config-validate : docker-running
198- $(CURDIR ) /bin/drush config-export sync --no
198+ $(CURDIR ) /bin/drush config:status
199199
200200config-refresh : config-init config-import
201201
202202clear-cache : docker-running # Clear Drupal cache
203- $(CURDIR ) /bin/drush cr
203+ $(CURDIR ) /bin/drush cache:rebuild
204204
205205# #
206206# Development commands
0 commit comments