Skip to content

Commit

Permalink
Merge pull request #103 from mattkatz/fix-tmux-systemd-path
Browse files Browse the repository at this point in the history
switch from which to command -v for tmux invoke
  • Loading branch information
bruno- committed Jan 25, 2022
2 parents 9121498 + 280f9bd commit fc2f31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/handle_tmux_automatic_start/systemd_enable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ template() {
local options="$@"
local content=""
local resurrect_save_script_path="$(get_tmux_option "$resurrect_save_path_option" "$(realpath ${CURRENT_DIR}/../../../tmux-resurrect/scripts/save.sh)")"
local tmux_path="$(which tmux)"
local tmux_path="$(command -v tmux)"

read -r -d '' content <<-EOF
[Unit]
Expand Down

0 comments on commit fc2f31d

Please sign in to comment.