We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c8003 commit c000e8eCopy full SHA for c000e8e
1 file changed
macro/composer_install.go
@@ -7,6 +7,7 @@ import (
7
)
8
9
func ComposerInstall(args ...string) {
10
+ logger := shell.GetLogger()
11
p := project.GetProject()
12
env := p.GetEnvironment()
13
@@ -20,7 +21,7 @@ func ComposerInstall(args ...string) {
20
21
22
cmd := shell.NewComposerCommand(args...)
23
- if err := cmd.Run(); err != nil {
24
+ if err := cmd.WithLogger(logger).Run(); err != nil {
25
panic(errors.Wrap(err, "failed to execute composer install command"))
26
}
27
0 commit comments