remove accidental exit
This commit is contained in:
parent
08920b5643
commit
d0929f5b01
2
main.go
2
main.go
|
@ -2,7 +2,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -165,7 +164,6 @@ func main() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
os.Exit(1)
|
|
||||||
log.Debugf("will look for new items every %s\n", interval)
|
log.Debugf("will look for new items every %s\n", interval)
|
||||||
for {
|
for {
|
||||||
for _, feed := range feeds {
|
for _, feed := range feeds {
|
||||||
|
|
Loading…
Reference in New Issue