diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2020-11-20 22:48:46 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2020-11-20 22:48:46 -0500 |
| commit | 78712527eed66929b8147e04d18f000dcb7dfff6 (patch) | |
| tree | 612e0a4110072eab973dfa930ba04de59c06020a /config/config_unix.go | |
| parent | 891447f0e40a6d1a9637b3333cffed8eb2543c51 (diff) | |
| download | steam-export-78712527eed66929b8147e04d18f000dcb7dfff6.tar.gz steam-export-78712527eed66929b8147e04d18f000dcb7dfff6.tar.xz | |
Remove dead code. Remove 32 bit windows builds.
Diffstat (limited to 'config/config_unix.go')
| -rw-r--r-- | config/config_unix.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/config/config_unix.go b/config/config_unix.go deleted file mode 100644 index 8be1967..0000000 --- a/config/config_unix.go +++ /dev/null @@ -1,21 +0,0 @@ -// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris - -package config - -import ( - "os" - "path/filepath" -) - -var ( - editor string = setEditor() - fn string = filepath.Join(os.Getenv("HOME"), "."+configFilename) -) - -func setEditor() string { - e := os.Getenv("EDITOR") - if e == "" { - return "vi" - } - return e -} |
