There was an error while loading. Please reload this page.
1 parent 26d8158 commit 19c6d22Copy full SHA for 19c6d22
1 file changed
src/steps/tmux.rs
@@ -18,7 +18,7 @@ const TPM_PATH: &str = "plugins/tpm";
18
pub fn run_tpm(ctx: &ExecutionContext) -> Result<()> {
19
let tpm = match env::var("TMUX_PLUGIN_MANAGER_PATH") {
20
// Use `$TMUX_PLUGIN_MANAGER_PATH` if set,
21
- Ok(var) => PathBuf::from(var).join(UPDATE_PLUGINS),
+ Ok(var) => PathBuf::from(var).join("tpm").join(UPDATE_PLUGINS),
22
Err(_) => {
23
// otherwise, use the default XDG location `~/.config/tmux`
24
#[cfg(unix)]
0 commit comments