mirror of https://github.com/databricks/cli.git
14 lines
327 B
Go
14 lines
327 B
Go
|
package env
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
// TempDirVariable names the environment variable that holds the temporary directory to use.
|
||
|
const TempDirVariable = "DATABRICKS_BUNDLE_TMP"
|
||
|
|
||
|
// TempDir returns the temporary directory to use.
|
||
|
func TempDir(ctx context.Context) (string, bool) {
|
||
|
return get(ctx, []string{
|
||
|
TempDirVariable,
|
||
|
})
|
||
|
}
|