aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater/msirunner_linux.go
blob: f6cca44165d31837cc920b185779611955d022cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019-2020 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(), "")
}