This commit finally removes the embed package in favor of more specific resource packages
8 lines
195 B
Go
8 lines
195 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")
|
|
}
|