Skip to content

Commit

Permalink
stop using bin/go and bin/env
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Suraci and Jon Stevens committed Jun 13, 2013
1 parent cd957e3 commit 42bb42d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ install: go get -d -v ./src/github.com/...

script:
- gem install nats
- bin/go version
- bin/go env
- go version
- go env
- bin/test
7 changes: 0 additions & 7 deletions bin/env

This file was deleted.

3 changes: 0 additions & 3 deletions bin/go

This file was deleted.

6 changes: 3 additions & 3 deletions bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo --- Installing
for p in $(packages)
do
echo $p
bin/go test -i $p
go test -i $p
done

echo --- Testing
Expand All @@ -21,9 +21,9 @@ do

if grep -q launchpad.net/gocheck src/$p/*.go
then
bin/go test $p -test.v=true -gocheck.v=true $*
go test $p -test.v=true -gocheck.v=true $*
else
bin/go test $p -test.v=true $*
go test $p -test.v=true $*
fi
fi
done

0 comments on commit 42bb42d

Please sign in to comment.