From 2e4071fb735a018051b38f36e7807b44865d3fbc Mon Sep 17 00:00:00 2001 From: partisan Date: Tue, 10 Sep 2024 23:31:22 +0200 Subject: [PATCH] oopsie --- spitfire/build.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/spitfire/build.go b/spitfire/build.go index 929292d..d14b60d 100644 --- a/spitfire/build.go +++ b/spitfire/build.go @@ -37,11 +37,6 @@ func SetGlobalEnv(variable, value string, scope string) error { // Run an external command like scp or rsync func runCommand(command string, args ...string) error { - // Make sure the MOZILLABUILD environment variable is set for the mach commands - if err := setMozillaBuildEnv(); err != nil { - return err - } - cmd := exec.Command(command, args...) cmd.Stdout = os.Stdout cmd.Stderr = os.Stderr