Skip to content

Instantly share code, notes, and snippets.

@tt
tt / busltee.go
Created April 30, 2015 18:47
busl tee utility
package main
import (
"io"
"io/ioutil"
"log"
"os"
"os/exec"
"sync"
)
@tt
tt / README.md
Created February 10, 2016 19:40
Godep problem

When installing dependencies, dependencies are evaluated based on the latest version in $GOPATH and not based on whatever version is saved in Godeps/

Steps to reproduce

Install Logrus and reset to old version:

go get github.com/Sirupsen/logrus
(cd $GOPATH/src/github.com/Sirupsen/logrus && git reset --hard 8cdd4b39f502d10358d92586e020d3535f257ec9^)

Create a small program (main.go):