kataras / rizla

:eyes: Rizla builds, runs and monitors your Go Applications with ease. See https://github.com/kataras/iris-cli for Iris users.
MIT License
190 stars 17 forks source link

Error 128 when editing go files #7

Closed brunocassol closed 6 years ago

brunocassol commented 7 years ago

Rizla is giving me A change has been detected, reloading now...exit status 128 when I edit a .go file.

I just finished setting up Go 1.8 on Windows 10. I don't use anti-virus software.

Created hello.go file:

package main

import "fmt"

func main() {
    fmt.Println("Hello world")
}

Running rizla works: rizla.exe src/hello/hello.go Hello world

But when I edit hello.go it gives me this: image

I tried running rizla with -walk, it wont detect changes. I tried running rizla from a terminal with admin rights and got same error: "...exit status 128"

Any ideas how I could get rizla to work?

Thanks in advance!