-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
profile.d/toolbox.sh: set PS1 as explicit string constants #1514
base: main
Are you sure you want to change the base?
Conversation
since they are constants there is no need to use printf and embed binary color codes, which also made it hard to match on toolbox PS1. Signed-off-by: Jens Petersen <petersen@redhat.com> containers#1514
Build failed. ❌ unit-test FAILURE in 6m 05s |
since it is constant there is no need to use printf and embed binary color codes, which also made it hard to match on toolbox PS1. Signed-off-by: Jens Petersen <petersen@redhat.com> containers#1514
(I dropped the zsh PS1 change, since shellcheck doesn't like |
Build succeeded. ✔️ unit-test SUCCESS in 5m 34s |
Closing this for now in favor of #1517 |
Merge Failed. This change or one of its cross-repo dependencies was unable to be automatically merged with the current state of its repository. Please rebase the change and upload a new patchset. |
Since the PS1 strings are constants there is no need to use printf and
embed binary color codes, which also makes it hard to match on toolbox PS1.
I tested these in bash and zsh locally and they seem to work fine.