Store Vagrantfile related to the basis

This commit is contained in:
sophia 2021-05-27 17:25:38 -05:00 committed by Paul Hinze
parent 26333d420e
commit 6421b671e1
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -208,6 +208,13 @@ func (b *Basis) LoadVagrantfiles() error {
return err
}
b.basis.Configuration = vagrantfile
// Push Vagrantfile updates to basis
b.client.UpsertBasis(
context.Background(),
&vagrant_server.UpsertBasisRequest{
Basis: b.basis,
},
)
return nil
}