File: 0002-Add-patch-IGNORE-tmux-version-check.patch

package info (click to toggle)
tmuxinator 3.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 540 kB
  • sloc: ruby: 3,766; sh: 19; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 589 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Youhei SASAKI <uwabami@gfd-dennou.org>
Date: Tue, 1 Oct 2024 13:37:13 +0900
Subject: Add patch: IGNORE tmux version check (Closes: #1083018)

Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
---
 lib/tmuxinator/tmux_version.rb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/lib/tmuxinator/tmux_version.rb
+++ b/lib/tmuxinator/tmux_version.rb
@@ -40,7 +40,8 @@
     MSG
 
     def self.supported?(version = Tmuxinator::Config.version)
-      SUPPORTED_TMUX_VERSIONS.include?(version)
+      # SUPPORTED_TMUX_VERSIONS.include?(version)
+	true
     end
   end
 end