mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-21 15:56:24 +00:00
fix(unlock cmd): ignore process if its the current id (#360)
This commit is contained in:
parent
edb3ba35d8
commit
dc56911a45
@ -3,6 +3,7 @@ package cmd
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
|
||||
@ -61,9 +62,10 @@ func isAutoresticRunning() bool {
|
||||
|
||||
lines := strings.Split(out.String(), "\n")
|
||||
autoresticProcesses := []string{}
|
||||
currentPid := fmt.Sprint(os.Getpid())
|
||||
|
||||
for _, line := range lines {
|
||||
if strings.Contains(line, "autorestic") && !strings.Contains(line, "grep autorestic") {
|
||||
if strings.Contains(line, "autorestic") && !strings.Contains(line, "grep autorestic") && !strings.Contains(line, currentPid) {
|
||||
autoresticProcesses = append(autoresticProcesses, line)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user