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:
Peter Hutterer 2021-05-10 08:37:30 +10:00 committed by Wim Taymans
parent 056d06da88
commit 20f8838f7b

View file

@ -55,7 +55,7 @@ while getopts 'hr:vs:p:' param ; do
echo " -h show brief help"
echo " -r <remote> remote daemon name"
echo " -v verbose debug info"
echo " -s samplerate (default "$SAMPLERATE")"
echo " -s samplerate (default \"$SAMPLERATE\")"
echo " -p period in samples"
exit 0
;;