From c8ec7e06abddd0e294ab9372cdb7a5a8b03edb51 Mon Sep 17 00:00:00 2001 From: Christopher Swenson Date: Tue, 14 Nov 2023 10:50:55 -0800 Subject: [PATCH] Update plugincontainer/container_runner_linux.go Co-authored-by: Tom Proctor --- plugincontainer/container_runner_linux.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugincontainer/container_runner_linux.go b/plugincontainer/container_runner_linux.go index b8046f7..15d02ff 100644 --- a/plugincontainer/container_runner_linux.go +++ b/plugincontainer/container_runner_linux.go @@ -50,9 +50,6 @@ type containerRunner struct { // NewContainerRunner must be passed a cmd that hasn't yet been started. func (cfg *Config) NewContainerRunner(logger hclog.Logger, cmd *exec.Cmd, hostSocketDir string) (runner.Runner, error) { - if runtime.GOOS != "linux" { - return nil, ErrUnsupportedOS - } if cfg.Image == "" { return nil, errors.New("must provide an image")