Merge pull request #252 from dagger/fix-store-root
store: fix root directory
This commit is contained in:
commit
4c93f100a0
@ -46,11 +46,11 @@ func NewStore(root string) (*Store, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func DefaultStore() (*Store, error) {
|
func DefaultStore() (*Store, error) {
|
||||||
root := defaultStoreRoot
|
if root := os.Getenv("DAGGER_STORE"); root != "" {
|
||||||
if r := os.Getenv("DAGGER_STORE"); r != "" {
|
return NewStore(root)
|
||||||
root = r
|
|
||||||
}
|
}
|
||||||
return NewStore(root)
|
|
||||||
|
return NewStore(os.ExpandEnv(defaultStoreRoot))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Store) deploymentPath(name string) string {
|
func (s *Store) deploymentPath(name string) string {
|
||||||
|
Reference in New Issue
Block a user