13 lines
375 B
Go
13 lines
375 B
Go
package env
|
|
|
|
import "path/filepath"
|
|
|
|
// RuntimeDir returns the path to the runtime directory
|
|
func (dis Distillery) RuntimeDir() string {
|
|
return filepath.Join(dis.Config.DeployRoot, "runtime")
|
|
}
|
|
|
|
// RuntimeUtilsDir returns the path to the runtime utility dir
|
|
func (dis Distillery) RuntimeUtilsDir() string {
|
|
return filepath.Join(dis.Config.DeployRoot, "runtime", "utils")
|
|
}
|