Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
makiuchi-d committed Apr 7, 2023
1 parent b1c636f commit e2a33c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,18 @@ This option can be `SIGHUP`, `SIGINT`, `SIGQUIT`, `SIGKILL`, `SIGUSR1`, `SIGUSR2

This option is not available on Windows.

#### -r, --restart

Automatically restart the command when it exits, similar to when the pattern matched file is modified.

#### -v, --verbose

Output logs verbosely.

#### -V, --version

Print version informatin.

#### -h, --help

Print usage.
Expand Down
2 changes: 1 addition & 1 deletion arelo_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func parseSignalOption(str string) (os.Signal, string) {

// makeChildDoneChan returns a chan that notifies the child process has exited.
//
// On UNIX, it is notified by SIGCHLD.
// On UNIX like OS, it is notified by SIGCHLD.
func makeChildDoneChan() <-chan struct{} {
c := make(chan struct{}, 1)
go func() {
Expand Down

0 comments on commit e2a33c2

Please sign in to comment.