The `tmate` project forked the `tmux` code to allow for easy, almost-instantaneous pair programming in the console. Using this project, the GitHub Action https://github.com/marketplace/actions/debugging-with-tmate allows debugging build failures interactively. Unfortunately, `tmate` does not offer any support for Windows. MSYS2 to the rescue! We just added package definitions for `msgpack-c` and `libssh`, which are the two previously missing dependencies of `tmate`, and with this commit, we add the package definition for `tmate` itself. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
27 lines
821 B
Diff
27 lines
821 B
Diff
From 8ae814221bdc02e49a80c5eba26f8d00e4865d51 Mon Sep 17 00:00:00 2001
|
|
From: Niklas Holm <jadedcyborg@gmail.com>
|
|
Date: Wed, 28 Feb 2018 10:20:07 +0100
|
|
Subject: [PATCH 1/3] tmux: Inherit MSYSTEM variable
|
|
|
|
Fixes issue https://github.com/msys2/MSYS2-packages/issues/1183
|
|
---
|
|
options-table.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/options-table.c b/options-table.c
|
|
index e3362ba8..a30825a0 100644
|
|
--- a/options-table.c
|
|
+++ b/options-table.c
|
|
@@ -490,7 +490,7 @@ const struct options_table_entry options_table[] = {
|
|
.type = OPTIONS_TABLE_STRING,
|
|
.scope = OPTIONS_TABLE_SESSION,
|
|
.default_str = "DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID "
|
|
- "SSH_CONNECTION WINDOWID XAUTHORITY"
|
|
+ "SSH_CONNECTION WINDOWID XAUTHORITY MSYSTEM"
|
|
|
|
},
|
|
|
|
--
|
|
2.29.1
|
|
|