Author: hardy.ferentschik
Date: 2010-09-30 04:49:21 -0400 (Thu, 30 Sep 2010)
New Revision: 20756
Modified:
core/trunk/tagRelease.sh
Log:
Fixed typo in string null check of project name. -z instead of -Z
Modified: core/trunk/tagRelease.sh
===================================================================
--- core/trunk/tagRelease.sh 2010-09-29 21:33:09 UTC (rev 20755)
+++ core/trunk/tagRelease.sh 2010-09-30 08:49:21 UTC (rev 20756)
@@ -63,7 +63,7 @@
fi
projectName=`xmlstarlet sel -N
x=http://maven.apache.org/POM/4.0.0 -t -v
"/x:project/x:artifactId" pom.xml`
-if [ -Z "$projectName" ]; then
+if [ -z "$projectName" ]; then
echo "Could not determine propject name (misasing/incomplete pom?)."
exit;
fi