You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by td...@apache.org on 2013/07/22 02:35:48 UTC

git commit: DRILL-153 - fixed classpath computation

Updated Branches:
  refs/heads/master 8186b5a1a -> eaf95ed3c


DRILL-153 - fixed classpath computation

Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/eaf95ed3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/eaf95ed3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/eaf95ed3

Branch: refs/heads/master
Commit: eaf95ed3c30d7bb147afe337e0e0477be6518d90
Parents: 8186b5a
Author: Ted Dunning <td...@apache.org>
Authored: Sun Jul 21 17:35:33 2013 -0700
Committer: Ted Dunning <td...@apache.org>
Committed: Sun Jul 21 17:35:33 2013 -0700

----------------------------------------------------------------------
 sandbox/prototype/sqlline | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/eaf95ed3/sandbox/prototype/sqlline
----------------------------------------------------------------------
diff --git a/sandbox/prototype/sqlline b/sandbox/prototype/sqlline
index 9baab78..98fc569 100755
--- a/sandbox/prototype/sqlline
+++ b/sandbox/prototype/sqlline
@@ -8,7 +8,7 @@
 # Build classpath on first call. (To force rebuild, remove .classpath.)
 if [ ! -f .classpath ]; then
     (cd sqlparser; mvn dependency:build-classpath -Dmdep.outputFile=../.classpath)
-    find . -type d -name classes |awk 'BEGIN {ORS=":"} {print}' >> .classpath
+    echo -n :sqlparser/target/classes/ >> .classpath
 fi
 
 exec java -cp "$(cat .classpath)" sqlline.SqlLine "$@"