diff options
Diffstat (limited to 'src/config.go')
| -rw-r--r-- | src/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.go b/src/config.go index 0b7c1c7..6e085d0 100644 --- a/src/config.go +++ b/src/config.go @@ -22,7 +22,7 @@ func (eduvpn *VPNState) WriteConfig() error { if marshalErr != nil { return marshalErr } - return ioutil.WriteFile(eduvpn.GetConfigName(), jsonString, 0644) + return ioutil.WriteFile(eduvpn.GetConfigName(), jsonString, 0o644) } func (eduvpn *VPNState) LoadConfig() error { |
