Skip to content

Commit f2488c7

Browse files
authored
Fix shopware6 sw:build job
`sw:build` is run in the deploy step, so we must execute `build.sh` from the release directory
1 parent 400b3b3 commit f2488c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes/shopware6.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
});
7272

7373
task('sw:build', static function () {
74-
run('./bin/build.sh');
74+
run('cd {{release_path}} && ./bin/build.sh');
7575
});
7676

7777
task('sw:touch_install_lock', static function () {

0 commit comments

Comments
 (0)