diff --git a/.gitignore b/.gitignore index a23e18aec..61bc6fa8c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ /website/.sass-cache /website/build .DS_Store +*.swp .vagrant .idea test/.env diff --git a/builder/lxc/artifact.go b/builder/lxc/artifact.go index 9ac57d0cc..9e34bd2fd 100644 --- a/builder/lxc/artifact.go +++ b/builder/lxc/artifact.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/builder.go b/builder/lxc/builder.go index 7d630fe44..ea483dda1 100644 --- a/builder/lxc/builder.go +++ b/builder/lxc/builder.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/command.go b/builder/lxc/command.go index af81cff83..878a3ce2c 100644 --- a/builder/lxc/command.go +++ b/builder/lxc/command.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/communicator.go b/builder/lxc/communicator.go index 4d6fab911..4e3b575bc 100644 --- a/builder/lxc/communicator.go +++ b/builder/lxc/communicator.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/config.go b/builder/lxc/config.go index 4c4152592..79d4653b3 100644 --- a/builder/lxc/config.go +++ b/builder/lxc/config.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/step_export.go b/builder/lxc/step_export.go index 3af9ed7f3..4763d0b68 100644 --- a/builder/lxc/step_export.go +++ b/builder/lxc/step_export.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( @@ -96,4 +98,4 @@ func (s *stepExport) SudoCommand(args ...string) error { log.Printf("stderr: %s", stderrString) return err -} \ No newline at end of file +} diff --git a/builder/lxc/step_lxc_create.go b/builder/lxc/step_lxc_create.go index 070eae680..f78804a5d 100644 --- a/builder/lxc/step_lxc_create.go +++ b/builder/lxc/step_lxc_create.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/step_prepare_output_dir.go b/builder/lxc/step_prepare_output_dir.go index 4b66c0c87..ccd0fc2c3 100644 --- a/builder/lxc/step_prepare_output_dir.go +++ b/builder/lxc/step_prepare_output_dir.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/step_provision.go b/builder/lxc/step_provision.go index b8fe6cd04..913e86d70 100644 --- a/builder/lxc/step_provision.go +++ b/builder/lxc/step_provision.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import ( diff --git a/builder/lxc/step_wait_init.go b/builder/lxc/step_wait_init.go index 4b5d28fb2..646964272 100644 --- a/builder/lxc/step_wait_init.go +++ b/builder/lxc/step_wait_init.go @@ -1,3 +1,5 @@ +// +build linux + package lxc import (