commit c14d73615ba8d9e12ae29f0168babc0ecbe55052 Author: Nick Mathewson nickm@torproject.org Date: Wed Aug 28 15:56:18 2019 -0400
Bug 31550: Put curly quotes inside single quotes, so shellcheck believes them
If you don't take this approach with unicode curly quotes, shellcheck thinks that maybe you meant to use "" instead. --- projects/tor-browser/RelativeLink/start-tor-browser | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/projects/tor-browser/RelativeLink/start-tor-browser b/projects/tor-browser/RelativeLink/start-tor-browser index 5cb94ef..1adad8f 100755 --- a/projects/tor-browser/RelativeLink/start-tor-browser +++ b/projects/tor-browser/RelativeLink/start-tor-browser @@ -296,7 +296,7 @@ function setControlPortPasswd() { TOR_CONTROL_PASSWD environment variable." echo "The Tor ControlPort password should be given inside double" echo "quotes, inside single quotes. That is, if the ControlPort" - echo "password is “secret” (without curly quotes) then we must" + echo 'password is “secret” (without curly quotes) then we must' echo "start this script after setting the environment variable" echo "exactly like this:" echo
tbb-commits@lists.torproject.org