diff options
Diffstat (limited to 'src/make.bash')
| -rwxr-xr-x | src/make.bash | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/make.bash b/src/make.bash new file mode 100755 index 0000000000..9a21cfe2da --- /dev/null +++ b/src/make.bash @@ -0,0 +1,11 @@ +#!/bin/bash +# Copyright 2009 The Go Authors. All rights reserved. +# Use of this source code is governed by a BSD-style +# license that can be found in the LICENSE file. + +for i in cmd runtime +do + cd $i + bash make.bash + cd .. +done |
