You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// +build jehanne
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
func init() {
|
|
jehanne = os.Getenv("JEHANNE")
|
|
if jehanne != "" {
|
|
return
|
|
}
|
|
jehanne = "/"
|
|
os.Setenv("path", strings.Join([]string{fromRoot("/util"), os.Getenv("path")}, string(os.PathListSeparator)))
|
|
}
|