Don't force-exit CLI clients after sync

This commit is contained in:
2025-11-23 13:39:56 -05:00
parent 08bc065785
commit 95a877d0b3
-1
View File
@@ -587,6 +587,5 @@ func RunJob(returnLists bool) ([3][]string, error) {
if err != nil { if err != nil {
return [3][]string{nil, nil, nil}, errors.New("unable to sync entries: " + err.Error()) return [3][]string{nil, nil, nil}, errors.New("unable to sync entries: " + err.Error())
} }
back.Exit(0) // exit program if running non-interactively
return lists, nil // dummy return for when not returning lists return lists, nil // dummy return for when not returning lists
} }