From 5df92814c7e68d70ff38abe0eeb0db72434c099c Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 6 Jul 2022 12:54:05 -0700 Subject: [PATCH] Update function call name fo init operation --- internal/runner/operation_init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/runner/operation_init.go b/internal/runner/operation_init.go index bb5b39fa6..30d77d350 100644 --- a/internal/runner/operation_init.go +++ b/internal/runner/operation_init.go @@ -17,7 +17,7 @@ func (r *Runner) executeInitOp( panic("operation not expected type") } - x, err := basis.Init() + x, err := basis.RunInit() result = &vagrant_server.Job_Result{ Init: x, }