12 lines
185 B
Go
12 lines
185 B
Go
// +build !windows,!darwin
|
|
|
|
package byteexec
|
|
|
|
func renameExecutable(orig string) string {
|
|
return orig
|
|
}
|
|
|
|
func pathForRelativeFiles() (string, error) {
|
|
return inHomeDir(".byteexec")
|
|
}
|