From 4eb70326eebca4dc4df96d682d31635e1f80ffc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Thu, 19 Oct 2023 14:17:08 +0200 Subject: [PATCH] Delete unused `internal/shell` package MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a leftover from the `osbuild/images` split`. Signed-off-by: Tomáš Hozza --- internal/shell/shell.go | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 internal/shell/shell.go diff --git a/internal/shell/shell.go b/internal/shell/shell.go deleted file mode 100644 index 424eb9014..000000000 --- a/internal/shell/shell.go +++ /dev/null @@ -1,11 +0,0 @@ -package shell - -type EnvironmentVariable struct { - Key string - Value string -} - -type InitFile struct { - Filename string - Variables []EnvironmentVariable -}