mirror of
https://github.com/tmux-plugins/tmux-yank.git
synced 2026-09-10 07:36:17 -04:00
Merge pull request #89 from maximbaz/make-tmux-is-at-least-support-build-from-master
utils: make tmux_is_at_least support "master" as version
This commit is contained in:
commit
53796467b8
|
|
@ -135,7 +135,7 @@
|
|||
tmux_version="$(tmux -V | cut -d ' ' -f 2)"
|
||||
|
||||
tmux_is_at_least() {
|
||||
if [[ $tmux_version == "$1" ]]
|
||||
if [[ $tmux_version == "$1" || $tmux_version == "master" ]]
|
||||
then
|
||||
return 0
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue