aboutsummaryrefslogtreecommitdiff
path: root/spool/save.go
diff options
context:
space:
mode:
authorJulien Dessaux2020-02-12 21:04:55 +0100
committerJulien Dessaux2020-02-12 21:04:55 +0100
commit211adff0b060023fe0c91e1950d80d3a36d61868 (patch)
tree2fea7d5d39a6dff4f0276018b9bf23f2debc412c /spool/save.go
parentAdded tests for job package (diff)
downloadbareos-zabbix-check-211adff0b060023fe0c91e1950d80d3a36d61868.tar.gz
bareos-zabbix-check-211adff0b060023fe0c91e1950d80d3a36d61868.tar.bz2
bareos-zabbix-check-211adff0b060023fe0c91e1950d80d3a36d61868.zip
Fixed code that used the wrong path manipulation module
Diffstat (limited to '')
-rw-r--r--spool/save.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/spool/save.go b/spool/save.go
index b01dc7b..f25b86a 100644
--- a/spool/save.go
+++ b/spool/save.go
@@ -4,12 +4,12 @@ import (
"encoding/csv"
"fmt"
"os"
- "path"
+ "path/filepath"
)
// Save writes a spool on the disk
func (s *Spool) Save() (err error) {
- file, err := os.Create(path.Join(s.config.WorkDir(), spoolFile))
+ file, err := os.Create(filepath.Join(s.config.WorkDir(), spoolFile))
if err != nil {
return
}