diff options
| author | Greg Steuck <blackgnezdo@gmail.com> | 2019-05-12 23:38:17 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-12 23:38:17 -0700 |
| commit | ddba9a616e1f9e6d7a02f4091fc77e9611ffb5f6 (patch) | |
| tree | 7240dd7e05cf77667578fe1856b82e9426bfb01b /pkg/instance | |
| parent | 16ab1e89e3b333919112342bd6a147a8ad0f3290 (diff) | |
pkg/instance: break the line to appease linter (#1173)
* pkg/instance: break the line to appease linter
* fix up format
Diffstat (limited to 'pkg/instance')
| -rw-r--r-- | pkg/instance/instance.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/instance/instance.go b/pkg/instance/instance.go index a84e9c89c..c2556bcd9 100644 --- a/pkg/instance/instance.go +++ b/pkg/instance/instance.go @@ -82,7 +82,8 @@ func (env *Env) BuildSyzkaller(repo, commit string) error { return nil } -func (env *Env) BuildKernel(compilerBin, userspaceDir, cmdlineFile, sysctlFile string, kernelConfig []byte) (string, error) { +func (env *Env) BuildKernel(compilerBin, userspaceDir, cmdlineFile, sysctlFile string, + kernelConfig []byte) (string, error) { cfg := env.cfg imageDir := filepath.Join(cfg.Workdir, "image") if err := build.Image(cfg.TargetOS, cfg.TargetVMArch, cfg.Type, |
