githubnemo / CompileDaemon

Very simple compile daemon for Go
BSD 2-Clause "Simplified" License
1.61k stars 153 forks source link

Console not showing, echo server not restarting #66

Open haithamelmengad opened 3 years ago

haithamelmengad commented 3 years ago

The following code displays "test" on the terminal when running my go module without CompileDaemon: fmt.Fprintf(os.Stdout, "test")

When using CompileDaemon using the following command, there is not output on the terminal: ${my_go_path}/CompileDaemon -directory={directory_to_track_changes_on} -command="go run {path_to_main_file}" -color=true

Additionally, part of the code that runs starts an echo server on a local port. When I make changes, although live reloading happens, the server isn't restarted.