瀏覽代碼

feat: added mftf command.

peakercope 3 年之前
父節點
當前提交
39efec4261
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      compose/Makefile

+ 4 - 0
compose/Makefile

@@ -37,6 +37,7 @@ help:
 	@echo "$(call format,make,fixperms,'This will fix filesystem permissions within the container.')"
 	@echo "$(call format,make,fixperms,'This will fix filesystem permissions within the container.')"
 	@echo "$(call format,make,grunt,'Run the grunt binary.')"
 	@echo "$(call format,make,grunt,'Run the grunt binary.')"
 	@echo "$(call format,make,magento,'Run the Magento CLI.')"
 	@echo "$(call format,make,magento,'Run the Magento CLI.')"
+	@echo "$(call format,make,mftf,'Run the Magento MFTF.')"
 	@echo "$(call format,make,mysql,'Run the MySQL CLI with database config from env/db.env.')"
 	@echo "$(call format,make,mysql,'Run the MySQL CLI with database config from env/db.env.')"
 	@echo "$(call format,make,mysqldump,'Backup the Magento database.')"
 	@echo "$(call format,make,mysqldump,'Backup the Magento database.')"
 	@echo "$(call format,make,n98-magerun2,'Access the n98-magerun2 CLI.')"
 	@echo "$(call format,make,n98-magerun2,'Access the n98-magerun2 CLI.')"
@@ -112,6 +113,9 @@ grunt:
 magento:
 magento:
 	@./bin/magento $(call args)
 	@./bin/magento $(call args)
 
 
+mftf:
+	@./bin/mftf $(call args)
+
 mysql:
 mysql:
 	@./bin/mysql $(call args)
 	@./bin/mysql $(call args)