From 06956895c732e92484cd4cef5b95e20233db78ee Mon Sep 17 00:00:00 2001 From: Oleh Posyniak Date: Wed, 12 Feb 2020 10:37:58 -0600 Subject: [PATCH] Fix scenario-based deployment examples --- src/cloud/deploy/scenario-based-deployment.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/cloud/deploy/scenario-based-deployment.md b/src/cloud/deploy/scenario-based-deployment.md index 44e9457bee2..72a8f85a185 100644 --- a/src/cloud/deploy/scenario-based-deployment.md +++ b/src/cloud/deploy/scenario-based-deployment.md @@ -25,8 +25,8 @@ You add the scenarios for building and deploying Magento to the `hooks` section hooks: build: | set -e - php ./vendor/bin/ece-tools run scenario/generate.xml - php ./vendor/bin/ece-tools run scenario/transfer.xml + php ./vendor/bin/ece-tools run scenario/build/generate.xml + php ./vendor/bin/ece-tools run scenario/build/transfer.xml deploy: | php ./vendor/bin/ece-tools run scenario/deploy.xml post_deploy: | @@ -105,8 +105,8 @@ To use the custom configuration file, update the default `.magento.app.yaml` fil hooks: build: | set -e - php ./vendor/bin/ece-tools run scenario/generate.xml - php ./vendor/bin/ece-tools run scenario/transfer.xml + php ./vendor/bin/ece-tools run scenario/build/generate.xml + php ./vendor/bin/ece-tools run scenario/build/transfer.xml deploy: | php ./vendor/bin/ece-tools run scenario/deploy.xml vendor/vendor-name/module-name/deploy-custom-mode-config.xml post_deploy: | @@ -202,8 +202,8 @@ To use this script in your project, add the following configuration to the `.mag hooks: build: | set -e - php ./vendor/bin/ece-tools run scenario/generate.xml - php ./vendor/bin/ece-tools run scenario/transfer.xml + php ./vendor/bin/ece-tools run scenario/build/generate.xml + php ./vendor/bin/ece-tools run scenario/build/transfer.xml deploy: | php ./vendor/bin/ece-tools run scenario/deploy.xml vendor/vendor-name/module-name/deploy-extended.xml post_deploy: |