Author: hashutosh
Date: Tue Sep 6 21:21:49 2011
New Revision: 1165858
URL: http://svn.apache.org/viewvc?rev=1165858&view=rev
Log:
HCAT-43. hcat.sh does not pick up hcatalog.jar correctly
Added:
incubator/hcatalog/branches/branch-0.2/bin/hcat
- copied, changed from r1165849,
incubator/hcatalog/branches/branch-0.2/bin/hcat.sh
Modified:
incubator/hcatalog/branches/branch-0.2/CHANGES.txt
incubator/hcatalog/branches/branch-0.2/bin/hcat.sh
Modified: incubator/hcatalog/branches/branch-0.2/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.2/CHANGES.txt?rev=1165858&r1=1165857&r2=1165858&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.2/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.2/CHANGES.txt Tue Sep 6 21:21:49 2011
@@ -33,7 +33,9 @@ Release 0.2.0 - Unreleased
(Krishna Kumar via macyang)
IMPROVEMENTS
- HCAT-91. hcat client not setting the config properly (hashutosh)
+ HCAT-43. hcat.sh does not pick up hcatalog.jar correctly (macyang via
hashutosh)
+
+ HCAT-91. hcat client not setting the config properly (hashutosh)
HCAT-66. HCatalog 0.2.0 Documentation (chandec via hashutosh)
Copied: incubator/hcatalog/branches/branch-0.2/bin/hcat (from r1165849,
incubator/hcatalog/branches/branch-0.2/bin/hcat.sh)
URL:
http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.2/bin/hcat?p2=incubator/hcatalog/branches/branch-0.2/bin/hcat&p1=incubator/hcatalog/branches/branch-0.2/bin/hcat.sh&r1=1165849&r2=1165858&rev=1165858&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.2/bin/hcat.sh (original)
+++ incubator/hcatalog/branches/branch-0.2/bin/hcat Tue Sep 6 21:21:49 2011
@@ -50,7 +50,8 @@ for f in $@; do
done
# Find our hcatalog jar
-HCAT_JAR=$HCAT_HOME/lib/hcatalog-*.jar
+shopt -s extglob
+HCAT_JAR=$HCAT_HOME/lib/hcatalog-!(*server-extensions*).jar
# Add all of the other jars to our classpath
for jar in $HCAT_HOME/lib/*.jar ; do