diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2017-02-04 18:16:22 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2017-02-04 18:16:22 -0500 |
| commit | 0e346bf5ad4852db5db82343b2aca5911c38ad00 (patch) | |
| tree | 5a2528211318da0c550dfb5ca576a0292ed8176b /config/config_windows.go | |
| parent | 41752a0cf50735bc29dae18271539719f7b59f7c (diff) | |
| download | steam-export-0e346bf5ad4852db5db82343b2aca5911c38ad00.tar.gz steam-export-0e346bf5ad4852db5db82343b2aca5911c38ad00.tar.xz | |
Moved the libraries around
Diffstat (limited to 'config/config_windows.go')
| -rw-r--r-- | config/config_windows.go | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/config/config_windows.go b/config/config_windows.go deleted file mode 100644 index 39b6b6c..0000000 --- a/config/config_windows.go +++ /dev/null @@ -1,22 +0,0 @@ -// +build windows - -package config - -import ( - "os" - // "os/exec" - "path/filepath" -) - -var ( - editor string = setEditor() - fn string = filepath.Join(os.Getenv("LOCALAPPDATA"), configFilename) -) - -func setEditor() string { - e := os.Getenv("EDITOR") - if e == "" { - return `C:\Program Files\Windows NT\Accessories\wordpad.exe` - } - return e -} |
