Skip to content

Commit 5379646

Browse files
authored
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
2 parents 1c50f31 + 14f588e commit 5379646

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/helpers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ clipboard_copy_command() {
135135
tmux_version="$(tmux -V | cut -d ' ' -f 2)"
136136

137137
tmux_is_at_least() {
138-
if [[ $tmux_version == "$1" ]]
138+
if [[ $tmux_version == "$1" || $tmux_version == "master" ]]
139139
then
140140
return 0
141141
fi

0 commit comments

Comments
 (0)