Skip to content

Commit 6a934c6

Browse files
author
Bruno Sutic
committed
Merge pull request tmux-plugins#10 from knakayama/master
Fixed script path and few grammer mistakes
2 parents 0e22a21 + 065f5c1 commit 6a934c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

open.tmux

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ generate_open_command() {
4949
echo "$(command_generator "xdg-open")"
5050
else
5151
# error command for Linux machines when 'xdg-open' not installed
52-
"$CURRENT_DIR/scripts/tmux_open_error_message.sh xdg-open"
52+
"$CURRENT_DIR/scripts/tmux_open_error_message.sh" "xdg-open"
5353
fi
5454
}
5555

@@ -61,7 +61,7 @@ generate_open_search_command() {
6161
echo "$(search_command_generator "xdg-open" "$engine")"
6262
else
6363
# error command for Linux machines when 'xdg-open' not installed
64-
"$CURRENT_DIR/scripts/tmux_open_error_message.sh xdg-open"
64+
"$CURRENT_DIR/scripts/tmux_open_error_message.sh" "xdg-open"
6565
fi
6666
}
6767

scripts/tmux_open_error_message.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
44

5-
source "$CURRENT_DIR/scripts/helpers.sh"
5+
source "$CURRENT_DIR/helpers.sh"
66

77
MISSING_PROGRAM="$1"
88

0 commit comments

Comments
 (0)