Steve Rowe created SOLR-7067:
--------------------------------

             Summary: bin/solr won't run under bash 4.3 (OS X 10.10.2)
                 Key: SOLR-7067
                 URL: https://issues.apache.org/jira/browse/SOLR-7067
             Project: Solr
          Issue Type: Bug
    Affects Versions: 5.0, Trunk, 5.1
            Reporter: Steve Rowe
            Assignee: Steve Rowe
            Priority: Blocker
             Fix For: 5.0, Trunk, 5.1


I upgraded to OS X Yosemite 10.10.2 today, and the bash version went from 
{{3.2.53(1)-release (x86_64-apple-darwin14)}} on 10.10.1 to {{4.3.30(1)-release 
(x86_64-apple-darwin14.0.0)}}.

When I try to run {{bin/solr}}, I get:

{noformat}
bin/solr: line 55: [: is: binary operator expected
bin/solr: line 58: [: is: binary operator expected
This script requires extracting a WAR file with either the jar or unzip 
utility, please install these utilities or contact your administrator for 
assistance.
{noformat}

the relevant section of the script is:

{code}
52: hasJar=$(which jar 2>/dev/null)
53: hasUnzip=$(which unzip 2>/dev/null)
54: 
55: if [ ${hasJar} ]; then
56:   unzipCommand="$hasJar xf"
57: else
58:   if [ ${hasUnzip} ]; then
59:     unzipCommand="$hasUnzip"
60:   else
61:     echo -e "This script requires extracting a WAR file with either the jar 
or unzip utility, please install these utilities or contact your administrator 
for assistance."
62:     exit 1
63:   fi
64: fi
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to