chore(build): use third_party.go

use the third_party.go project to replace our update script. This
requires moving a few things around and gets rid of a few annoying bugs:

- You can now bump individual packages
- A new src directory isn't created on build
- Less shell scripting!
- Things get built into ./bin/
This commit is contained in:
Brandon Philips
2014-01-08 20:47:45 -08:00
parent 97f1363afa
commit 0f97e3528a
483 changed files with 415 additions and 2468 deletions

View File

@ -1,10 +0,0 @@
package assert
import (
"errors"
)
// AnError is an erorr instance useful for testing. If the code does not care
// about error specifics, and only needs to return the error for example, this
// error should be used to make the test code more readable.
var AnError error = errors.New("assert.AnError general error for testing.")