]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix one last SC2086
authorrl1987 <rl1987@sdf.lonestar.org>
Sun, 11 Nov 2018 16:04:07 +0000 (18:04 +0200)
committerGeorge Kadianakis <desnacked@riseup.net>
Thu, 15 Nov 2018 17:35:56 +0000 (19:35 +0200)
scripts/test/coverage

index 180a2d6dcbbd12498d45b1e2d47d97e395886cef..7a417cdc89829868388d63f0c2e4719b02fe6b3f 100755 (executable)
@@ -13,7 +13,7 @@ for fn in src/core/*/*.c src/feature/*/*.c src/app/*/*.c src/lib/*/*.c; do
     F=$(echo "$BN" | sed -e 's/\.c$//;')
     GC="${BN}.gcov"
     # Figure out the object file names
-    ONS=$(echo ${DN}/src_*-${F}.o)
+    ONS=$(echo "${DN}"/src_*-"${F}".o)
     ONS_WILDCARD_LITERAL="${DN}/src_*-${F}.o"
     # If the wildcard didn't expand, no files
     if [ "$ONS" != "${ONS_WILDCARD_LITERAL}" ]