aboutsummaryrefslogtreecommitdiff
path: root/config/workdir.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/workdir.go')
-rw-r--r--config/workdir.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/workdir.go b/config/workdir.go
index 283fdc5..208df1a 100644
--- a/config/workdir.go
+++ b/config/workdir.go
@@ -4,7 +4,7 @@ import (
"fmt"
"log"
"os"
- "path"
+ "path/filepath"
)
const (
@@ -33,7 +33,7 @@ func (c *Config) checkWorkDir() {
}
}
}
- c.workDir = path.Clean(c.workDir)
+ c.workDir = filepath.Clean(c.workDir)
if c.verbose {
log.Println("Setting work directory to ", c.workDir)
}