rerun
rerun copied to clipboard
Will autobuild and kill/relaunch the target when you update the code.
I'm running this in a docker container on a project i'm working on. ``` root@165b57827097:/go/src/github.com/crsmithdev/app-template# rerun github.com/crsmithdev/app-template 2015/05/09 18:07:37 setting up github.com/crsmithdev/app-template [] 2015/05/09 18:07:38 [app-template] starting ``` However, `touch`ing...
Hi John, Here's the modifications I made, in addition to Lachlan's: - I changed help display code to use standard "flag" module's facility, to avoid having to update that one...
It is quite common to name your HTML/text template files like `.html.go` or `.txt.go` but this currently breaks rerun since it tries to find a main package inside. On a...
Is there a way to pass flag to my program?
some testing required
``` panic: runtime error: invalid memory address or nil pointer dereference [signal 0xb code=0x1 addr=0x20 pc=0x77678] goroutine 1 [running]: panic(0x1a6460, 0x820340100) /usr/local/Cellar/go/1.6/libexec/src/runtime/panic.go:464 +0x3e6 github.com/howeyc/fsnotify.(*Watcher).removeWatch(0x8207ba000, 0x8208f3700, 0x3b, 0x0, 0x0) /Users/rob/go/src/github.com/howeyc/fsnotify/fsnotify_bsd.go:269 +0x878...
Allows to set a path where the binary will be placed (with package name, still)
A common development environment (at least under OSX) is to use a virtual machine to run a development environment and use NFS or another network filesystem to mount your code...
Test package does not necessary have to be named `main` as do binary executable packages. This fix makes it skip the package name check if we're testing. But ideally I...
I know that rerun watches the dependency directories, but it seems that it can only runs tests for the package that's at `buildpath`. Is there any way around this? I...