Download goxc instead of update

This commit is contained in:
Jingwen Owen Ou 2013-12-17 14:23:43 -08:00
Родитель 4e7306f9d3
Коммит 5a6576275b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -60,7 +60,7 @@ func TaskCrossCompileAll(t *tasking.T) {
// Cross-compiles gh for current platform. Build artifacts will be in target/VERSION
func TaskCrossCompile(t *tasking.T) {
t.Log("Updating goxc...")
err := t.Exec("go get -u github.com/laher/goxc")
err := t.Exec("go get github.com/laher/goxc")
if err != nil {
t.Errorf("Can't update goxc: %s\n", err)
return