We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85323a3 commit 6ee3d07Copy full SHA for 6ee3d07
1 file changed
recipes/shopware6.php
@@ -73,7 +73,11 @@
73
});
74
75
task('sw:build', static function () {
76
- run('cd {{release_path}} && ./bin/build.sh');
+ if (test('[ -f {{release_path}}/bin/build.sh ]')) {
77
+ run('cd {{release_path}} && ./bin/build.sh');
78
+ } else {
79
+ run('cd {{release_path}} && ./bin/build-js.sh');
80
+ }
81
82
83
task('sw:touch_install_lock', static function () {
0 commit comments