mirror of
https://github.com/systemd/systemd.git
synced 2026-06-24 08:47:49 +00:00
profile: bail out early if promptvars is disabled
We need promptvars, otherwise the prompt strings won't undergo parameter
expansion and we'd print them literally:
$ shopt -u promptvars
$ echo foo
$(__systemd_osc_context_ps0)foo
Resolves: #40620
(cherry picked from commit 7d1b6b7b96)
This commit is contained in:
committed by
Luca Boccassi
parent
5b94f6cb52
commit
9e1e2bcedc
@@ -21,6 +21,10 @@
|
||||
# Treat missing $TERM same as "dumb".
|
||||
[ "${TERM:-dumb}" = "dumb" ] && return 0
|
||||
|
||||
# We need promptvars, otherwise the prompt strings won't undergo parameter expansion
|
||||
# and we'd print them literally
|
||||
shopt -q promptvars || return 0
|
||||
|
||||
__systemd_osc_context_escape() {
|
||||
# Escape according to the OSC 3008 spec. Since this requires shelling out
|
||||
# to 'sed' we'll only do it where it's strictly necessary, and skip it when
|
||||
|
||||
Reference in New Issue
Block a user