[ 
https://issues.apache.org/jira/browse/GIRAPH-205?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Eli Reisman reassigned GIRAPH-205:
----------------------------------

    Assignee: Eli Reisman  (was: Roman Shaposhnik)
    
> Move Giraph jar to root level of tar.gz
> ---------------------------------------
>
>                 Key: GIRAPH-205
>                 URL: https://issues.apache.org/jira/browse/GIRAPH-205
>             Project: Giraph
>          Issue Type: Bug
>          Components: conf and scripts
>    Affects Versions: 0.2.0
>            Reporter: Roman Shaposhnik
>            Assignee: Eli Reisman
>             Fix For: 0.2.0
>
>         Attachments: GIRAPH-205-fix.patch, GIRAPH-205.patch.txt
>
>
> I see the following bit of code in bin/giraph:
> {noformat}
>         for f in $GIRAPH_HOME/lib/giraph*.jar ; do
>           if [ -e "$f" ]; then
>             JAR=$f
>             break
>           fi
>         done
> {noformat}
> I find it puzzling that it doesn't look for $GIRAPH_HOME/giraph*.jar 
> In fact, I find it puzzling that it looks under lib at all, since my 
> assumption is that lib is supposed to hold the dependencies only.
> Either way, I suggest that we modify it to be:
> {noformat}
>         for f in $GIRAPH_HOME/lib/giraph*.jar $GIRAPH_HOME/giraph*.jar  ; do
>           if [ -e "$f" ]; then
>             JAR=$f
>             break
>           fi
>         done
> {noformat}
> Thoughts?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to