[PATCH] Missing quotes
From: Matthias Urlichs <hidden>
Date: 2016-06-15 22:41:53
gitXnormid.sh should quote its cat-file calls so that nonexisting ssha1 IDs don't result in shell errors. Signed-Off-By: Matthias Urlichs <redacted>
--- 42a073eb6b5bb397a3e8768a032463a7fa02e6b9/gitXnormid.sh (mode:100755 sha1:c0d53afabe8662ebfc3c697faf08b0a2b43c93f7)
+++ 265515f9c4f089b1b61e9d2312c4b3babe189618/gitXnormid.sh (mode:100644 sha1:94710a7a2ab945f1fbd5350cb0de15171ae3f582)@@ -41,11 +41,11 @@ exit 1 fi -if [ "$type" = "tree" ] && [ $(cat-file -t "$id") = "commit" ]; then +if [ "$type" = "tree" ] && [ "$(cat-file -t "$id")" = "commit" ]; then id=$(cat-file commit $id | egrep "$TREE" | cut -d ' ' -f 2) fi -if [ $(cat-file -t "$id") != "$type" ]; then +if [ "$(cat-file -t "$id")" != "$type" ]; then echo "Invalid id: $id" >&2 exit 1 fi