mirror of https://github.com/golang/go.git
parent
12c81a0ce8
commit
92bb676290
|
|
@ -10,7 +10,7 @@ do
|
||||||
cd ..
|
cd ..
|
||||||
done
|
done
|
||||||
|
|
||||||
for i in cmd runtime
|
for i in cmd runtime lib
|
||||||
do
|
do
|
||||||
cd $i
|
cd $i
|
||||||
bash clean.bash
|
bash clean.bash
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rm -f $GOROOT/pkg/*
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
# 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.
|
||||||
|
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rm -f *.6
|
||||||
|
6g fmt.go
|
||||||
|
6g container/vector.go
|
||||||
|
mv *.6 $GOROOT/pkg
|
||||||
|
|
@ -12,7 +12,7 @@ do
|
||||||
cd ..
|
cd ..
|
||||||
done
|
done
|
||||||
|
|
||||||
for i in cmd runtime
|
for i in cmd runtime lib
|
||||||
do
|
do
|
||||||
cd $i
|
cd $i
|
||||||
bash make.bash
|
bash make.bash
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue