aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/msirunner_linux.go
diff options
context:
space:
mode:
Diffstat (limited to 'updater/msirunner_linux.go')
-rw-r--r--updater/msirunner_linux.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/updater/msirunner_linux.go b/updater/msirunner_linux.go
deleted file mode 100644
index 6550025c..00000000
--- a/updater/msirunner_linux.go
+++ /dev/null
@@ -1,23 +0,0 @@
-/* SPDX-License-Identifier: MIT
- *
- * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
- */
-
-package updater
-
-import (
- "fmt"
- "io/ioutil"
- "os"
- "os/exec"
-)
-
-// This isn't a Linux program, yes, but having the updater package work across platforms is quite helpful for testing.
-
-func runMsi(msiPath string, userToken uintptr, env []string) error {
- return exec.Command("qarma", "--info", "--text", fmt.Sprintf("It seems to be working! Were we on Windows, ā€˜%sā€™ would be executed.", msiPath)).Run()
-}
-
-func msiTempFile() (*os.File, error) {
- return ioutil.TempFile(os.TempDir(), "")
-}