From b6ee0ea736b49153988d0bab8264ef6d02dc960e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20K=C3=A4mmerling?= Date: Wed, 6 Mar 2019 08:05:08 +0100 Subject: [PATCH] Fix Format --- builder/hcloud/step_create_server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/hcloud/step_create_server.go b/builder/hcloud/step_create_server.go index ac3253764..63a52d0ef 100644 --- a/builder/hcloud/step_create_server.go +++ b/builder/hcloud/step_create_server.go @@ -31,7 +31,7 @@ func (s *stepCreateServer) Run(ctx context.Context, state multistep.StateBag) mu state.Put("error", fmt.Errorf("Problem reading user data file: %s", err)) return multistep.ActionHalt } - + userData = string(contents) }