We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca5899f commit d719d26Copy full SHA for d719d26
cmd/release/release.go
@@ -2,6 +2,8 @@
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
5
+// TODO(adg): add flag so that we can choose to run make.bash only
6
+
7
// Command release builds a Go release.
8
package main
9
@@ -286,10 +288,11 @@ func (b *Build) make() error {
286
288
// Execute build
287
289
b.logf("Building.")
290
out := new(bytes.Buffer)
- mk := filepath.Join(goDir, bc.MakeScript())
- remoteErr, err := client.Exec(mk, buildlet.ExecOpts{
291
+ all := filepath.Join(goDir, bc.AllScript())
292
+ remoteErr, err := client.Exec(all, buildlet.ExecOpts{
293
Output: out,
294
ExtraEnv: env,
295
+ Args: bc.AllScriptArgs(),
296
})
297
if err != nil {
298
return err
0 commit comments