mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
18 lines
493 B
Diff
18 lines
493 B
Diff
diff --git a/tool/tsh/common/tsh.go b/tool/tsh/common/tsh.go
|
|
index 5de21c69d0..3995c19e3c 100644
|
|
--- a/tool/tsh/common/tsh.go
|
|
+++ b/tool/tsh/common/tsh.go
|
|
@@ -1084,10 +1084,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"
|
|
|
|
// configs
|
|
setEnvFlags(&cf)
|