Skip TPM plugin install when tmux is unavailable in Debian Codespace builds#25
Merged
Conversation
Copilot created this pull request from a session on behalf of
vorburger
May 29, 2026 22:18
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR makes the shared install bootstrap tolerate Debian Codespace/container environments where tmux is intentionally absent, preventing TPM plugin installation from aborting the build.
Changes:
- Adds a
command -v tmuxguard before running TPM’sinstall_plugins. - Emits a skip message when TPM is cloned but
tmuxis unavailable. - Preserves existing TPM clone behavior for later tmux-based setup.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Debian 12/13 Codespace CI builds were failing during
bootstrap.shbecause TPM plugin installation unconditionally invokedtmuxin environments wheretmuxis intentionally not installed. This change makes TPM setup tolerant of tmux-less bootstrap contexts.Root cause
all-install.shcloned~/.tmux/plugins/tpmand always ran~/.tmux/plugins/tpm/bin/install_plugins, which fails whentmuxis not onPATH.Change
command -v tmuxguard before running TPM plugin installation.tmuxis absent.Resulting behavior
tmux.tmuxinstalled, TPM plugins are still installed as before.