12 lines
204 B
Go
12 lines
204 B
Go
// +build !windows
|
|
|
|
package byteexec
|
|
|
|
func renameExecutable(orig string) string {
|
|
return orig
|
|
}
|
|
|
|
func pathForRelativeFiles() (string, error) {
|
|
return inHomeDir("Library/Application Support/byteexec")
|
|
}
|