diff options
author | Ruben Pollan <meskio@sindominio.net> | 2018-05-30 13:13:21 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2018-05-30 13:13:21 +0200 |
commit | 715850857759d49dbb7d9ffb93acb9435a8b3136 (patch) | |
tree | 1440bc0eee62a636b41dfbe2d356f7555e385f2c /bitmask | |
parent | 9ad429d7030a3b07286fdc63f62181783149f494 (diff) |
[bug] use local appdata on windows0.0
The same way is used by bitmaskd.
- Resolves: #36
Diffstat (limited to 'bitmask')
-rw-r--r-- | bitmask/windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitmask/windows.go b/bitmask/windows.go index 1802405..de7ece0 100644 --- a/bitmask/windows.go +++ b/bitmask/windows.go @@ -20,7 +20,7 @@ import "os" const coreEndpoint = "tcp://127.0.0.1:5001" -var ConfigPath = os.Getenv("APPDATA") + "\\leap" +var ConfigPath = os.Getenv("LOCALAPPDATA") + "\\leap" func hasCurve() bool { return false |