From f25d6d68e131c6705ee74c18ae27d68a22923033 Mon Sep 17 00:00:00 2001 From: Larry Clapp Date: Thu, 28 Sep 2023 15:22:49 -0400 Subject: [PATCH] Fix Windows compilation error Since os_notunix.go is Windows-only, my "goimports" didn't run, so it didn't remove the now-unnecessary import of "os". --- interp/os_notunix.go | 1 - 1 file changed, 1 deletion(-) diff --git a/interp/os_notunix.go b/interp/os_notunix.go index 8aef4a56..66ed777a 100644 --- a/interp/os_notunix.go +++ b/interp/os_notunix.go @@ -7,7 +7,6 @@ package interp import ( "fmt" - "os" ) func mkfifo(path string, mode uint32) error {