From cc93a966b0c1cf0978a1c98b6f0952564c27b3c6 Mon Sep 17 00:00:00 2001 From: Greyson Dehn Date: Thu, 22 Dec 2016 11:34:56 -0600 Subject: [PATCH] Remove old code --- plugin.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/plugin.go b/plugin.go index 93a2893..7109ed5 100644 --- a/plugin.go +++ b/plugin.go @@ -139,14 +139,6 @@ func submoduleOverride(submodules map[string]map[string]string) string { return fileName } -func removeOverridesFile(fileName string) *exec.Cmd { - return exec.Command( - "rm", - "-f", - fileName, - ) -} - func exportSecrets(secrets map[string]string) { for k, v := range secrets { os.Setenv(fmt.Sprintf("%s", k), fmt.Sprintf("%s", os.Getenv(v)))