Skip to content
This repository has been archived by the owner on Aug 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #50 from gostudy/master
Browse files Browse the repository at this point in the history
Fix a bug about a defunct state kill process
  • Loading branch information
cjbassi authored Aug 16, 2018
2 parents 7fe426d + 9689105 commit 38e83a7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/widgets/proc.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,7 @@ func (self *Proc) Kill() {
}
cmd := exec.Command(command, self.Rows[self.SelectedRow][self.UniqueCol])
cmd.Start()
cmd.Wait()
}

/////////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 38e83a7

Please sign in to comment.