Fix jenkins.sh to match jenkins job axis filter

The 'yes/no' values are automatically converted to True/False upon
jenkins job instantiation. Let's use those directly.

Change-Id: Ib2100c8345d1f07f488de8170348fec9f877dd9b
diff --git a/contrib/jenkins.sh b/contrib/jenkins.sh
index 05b9639..b7cfc3d 100755
--- a/contrib/jenkins.sh
+++ b/contrib/jenkins.sh
@@ -51,9 +51,9 @@
   exit 1
 fi
 
-if [ "$with_vty" = "yes" ]; then
+if [ "$with_vty" = "True" ]; then
   PCU_CONFIG="$PCU_CONFIG --enable-vty-tests"
-elif [ -z "$with_vty" -o "$with_vty" = "no" ]; then
+elif [ -z "$with_vty" -o "$with_vty" = "False" ]; then
   echo "VTY tests disabled"
 else
   echo 'Invalid $with_vty value:' $with_vty