wg-quicker/vendor/github.com/getlantern/byteexec/rename_windows.go

15 lines
231 B
Go
Raw Permalink Normal View History

package byteexec
import (
"os"
"path/filepath"
)
func renameExecutable(orig string) string {
return orig + ".exe"
}
func pathForRelativeFiles() (string, error) {
return filepath.Join(os.Getenv("APPDATA"), "byteexec"), nil
}