diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2020-11-05 21:44:21 +0100 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2020-11-05 21:44:21 +0100 |
commit | 7936349902fec39abdcf59676f8a2f3bb1415c8d (patch) | |
tree | 2c39c874b350401ecd631d08a2a1595e13c6905f /pkg | |
parent | d3c7abb7eba8658667b0962cacc6ecd3526fc792 (diff) |
[tests] fix conditional flag for windows, was missing line break
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/bitmask/autostart.go | 1 | ||||
-rw-r--r-- | pkg/bitmask/autostart_win.go | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bitmask/autostart.go b/pkg/bitmask/autostart.go index f8f0f19..d12d187 100644 --- a/pkg/bitmask/autostart.go +++ b/pkg/bitmask/autostart.go @@ -1,5 +1,4 @@ // +build !windows - // Copyright (C) 2018 LEAP // // This program is free software: you can redistribute it and/or modify diff --git a/pkg/bitmask/autostart_win.go b/pkg/bitmask/autostart_win.go index 51ac0cd..444c5f4 100644 --- a/pkg/bitmask/autostart_win.go +++ b/pkg/bitmask/autostart_win.go @@ -1,4 +1,5 @@ // +build windows + package bitmask // Workaround for broken autostart package on windows. |