mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
pw-jack: correct nested quotes
Found by ShellCheck, reformatted output: In pipewire-jack/src/pw-jack.in line 58: echo " -s samplerate (default "$SAMPLERATE")" SC2027: The surrounding quotes actually unquote this. Remove or escape them. SC2086: Double quote to prevent globbing and word splitting.
This commit is contained in:
parent
056d06da88
commit
20f8838f7b
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ while getopts 'hr:vs:p:' param ; do
|
||||||
echo " -h show brief help"
|
echo " -h show brief help"
|
||||||
echo " -r <remote> remote daemon name"
|
echo " -r <remote> remote daemon name"
|
||||||
echo " -v verbose debug info"
|
echo " -v verbose debug info"
|
||||||
echo " -s samplerate (default "$SAMPLERATE")"
|
echo " -s samplerate (default \"$SAMPLERATE\")"
|
||||||
echo " -p period in samples"
|
echo " -p period in samples"
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue