mirror of
https://github.com/tailscale/tailscale.git
synced 2025-03-31 05:23:14 +00:00

This updates all source files to use a new standard header for copyright and license declaration. Notably, copyright no longer includes a date, and we now use the standard SPDX-License-Identifier header. This commit was done almost entirely mechanically with perl, and then some minimal manual fixes. Updates #6865 Signed-off-by: Will Norris <will@tailscale.com>
38 lines
911 B
Go
38 lines
911 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package cli
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
)
|
|
|
|
func findSSH() (string, error) {
|
|
// use C:\Windows\System32\OpenSSH\ssh.exe since unexpected behavior
|
|
// occurred with ssh.exe provided by msys2/cygwin and other environments.
|
|
if systemRoot := os.Getenv("SystemRoot"); systemRoot != "" {
|
|
exe := filepath.Join(systemRoot, "System32", "OpenSSH", "ssh.exe")
|
|
if st, err := os.Stat(exe); err == nil && !st.IsDir() {
|
|
return exe, nil
|
|
}
|
|
}
|
|
return exec.LookPath("ssh")
|
|
}
|
|
|
|
func execSSH(ssh string, argv []string) error {
|
|
// Don't use syscall.Exec on Windows, it's not fully implemented.
|
|
cmd := exec.Command(ssh, argv[1:]...)
|
|
cmd.Stdin = os.Stdin
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
var ee *exec.ExitError
|
|
err := cmd.Run()
|
|
if errors.As(err, &ee) {
|
|
os.Exit(ee.ExitCode())
|
|
}
|
|
return err
|
|
}
|