nixpkgs/pkgs/servers/teleport/tsh.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
465 B
Diff
Raw Normal View History

diff --git a/tool/tsh/tsh.go b/tool/tsh/tsh.go
2024-01-01 23:31:28 +00:00
index f73b0a4e46..6848286781 100644
--- a/tool/tsh/tsh.go
+++ b/tool/tsh/tsh.go
2024-01-01 23:31:28 +00:00
@@ -1065,10 +1065,11 @@ func Run(ctx context.Context, args []string, opts ...cliOption) error {
var err error
- cf.executablePath, err = os.Executable()
+ tempBinaryPath, err := os.Executable()
if err != nil {
return trace.Wrap(err)
}
+ cf.executablePath = path.Dir(tempBinaryPath) + "/tsh"
2024-01-01 23:31:28 +00:00
// configs
setEnvFlags(&cf)