Compare commits

...

2 Commits

Author SHA1 Message Date
Bruno Sutic fc2f31d795
Merge pull request #103 from mattkatz/fix-tmux-systemd-path
switch from which to command -v for tmux invoke
2022-01-25 16:31:49 +01:00
mattkatz 280f9bdffb switch from which to command -v for tmux invoke
command -v is posix and on all systems, which isn't

Of course, this is probably a quibble as anything that has systemd on it
probably has which.
2022-01-20 18:28:17 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -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]