t/gitweb-lib.sh: drop confusing quotes
commitf28bceca7545727064b4e9a73ac7e9acf08b54b4
authorJeff King <peff@peff.net>
Fri, 15 Nov 2019 09:06:01 +0000 (15 04:06 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 18 Nov 2019 01:46:30 +0000 (18 10:46 +0900)
tree03d7adb934a864a8d173b39d3a3f11766f33d1ac
parent0eba60c9b781ce8169f1288a73b538f1ecf3b615
t/gitweb-lib.sh: drop confusing quotes

Some variables assignments in gitweb_run() look like this:

  FOO=""$1""

The extra quotes aren't doing anything. Each set opens and closes an
empty string, and $1 is actually outside of any double-quotes (which is
OK, because variable assignment does not do whitespace splitting on the
expanded value).

Let's drop them, as they're simply confusing.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/gitweb-lib.sh