We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 349fab7 commit b476940Copy full SHA for b476940
main.go
@@ -129,6 +129,10 @@ func walker(root string) error {
129
defer func() { <-rsgainSemaphore }()
130
131
cmd := exec.Command("rsgain", append(command, audioFiles...)...)
132
+
133
+ // Stream output to console
134
+ cmd.Stdout = os.Stdout
135
+ cmd.Stderr = os.Stderr
136
err := cmd.Run()
137
138
if err != nil {
0 commit comments