Skip to content

Commit 19c6d22

Browse files
authored
fix(tmux): update path to tpm update script (#2050)
1 parent 26d8158 commit 19c6d22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/steps/tmux.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const TPM_PATH: &str = "plugins/tpm";
1818
pub fn run_tpm(ctx: &ExecutionContext) -> Result<()> {
1919
let tpm = match env::var("TMUX_PLUGIN_MANAGER_PATH") {
2020
// Use `$TMUX_PLUGIN_MANAGER_PATH` if set,
21-
Ok(var) => PathBuf::from(var).join(UPDATE_PLUGINS),
21+
Ok(var) => PathBuf::from(var).join("tpm").join(UPDATE_PLUGINS),
2222
Err(_) => {
2323
// otherwise, use the default XDG location `~/.config/tmux`
2424
#[cfg(unix)]

0 commit comments

Comments
 (0)