aboutsummaryrefslogtreecommitdiff
path: root/config/statefile.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/statefile.go')
-rw-r--r--config/statefile.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/statefile.go b/config/statefile.go
index 8b9f0a9..22fd214 100644
--- a/config/statefile.go
+++ b/config/statefile.go
@@ -4,7 +4,7 @@ import (
"fmt"
"log"
"os"
- "path"
+ "path/filepath"
)
const (
@@ -15,17 +15,17 @@ const (
func (c *Config) checkStateFile() {
// Finds the state file to parse
if c.stateFile != "" {
- c.stateFile = path.Join(c.workDir, c.stateFile)
+ c.stateFile = filepath.Join(c.workDir, c.stateFile)
info, err := os.Stat(c.stateFile)
if os.IsNotExist(err) || info.IsDir() {
fmt.Printf("INFO The state file %s does not exist.\n", c.stateFile)
os.Exit(0)
}
} else {
- c.stateFile = path.Join(c.workDir, bareosStateFile)
+ c.stateFile = filepath.Join(c.workDir, bareosStateFile)
info, err := os.Stat(c.stateFile)
if os.IsNotExist(err) || info.IsDir() {
- c.stateFile = path.Join(c.workDir, baculaStateFile)
+ c.stateFile = filepath.Join(c.workDir, baculaStateFile)
info, err = os.Stat(c.stateFile)
if os.IsNotExist(err) || info.IsDir() {
fmt.Println("INFO Could not find a suitable state file. Has a job ever run?")