From f2488c7f5b1c3e45f30e73e7e12e4a781f369c70 Mon Sep 17 00:00:00 2001 From: Timon de Groot Date: Wed, 1 Feb 2023 11:17:01 +0100 Subject: [PATCH] Fix shopware6 sw:build job `sw:build` is run in the deploy step, so we must execute `build.sh` from the release directory --- recipes/shopware6.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/shopware6.php b/recipes/shopware6.php index 017611a..7dda719 100644 --- a/recipes/shopware6.php +++ b/recipes/shopware6.php @@ -71,7 +71,7 @@ }); task('sw:build', static function () { - run('./bin/build.sh'); + run('cd {{release_path}} && ./bin/build.sh'); }); task('sw:touch_install_lock', static function () {