<div dir="ltr">Hi Aldo,<div><br></div><div>Thanks for the report.</div><div><br></div><div>This was fixed on the dev branch a few days ago, but we didn't backport it to the stable branch. I've gone ahead and done that now so that others won't have to deal with this until we do our next scheduled bugfix release.</div><div><br></div><div>-Nathan</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Oct 10, 2014 at 3:26 PM, Aldo Alberto Batta Marquez <span dir="ltr"><<a href="mailto:abatta@astro.unam.mx" target="_blank">abatta@astro.unam.mx</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Hi all, </div><div><br></div><div>I'm not yet in the mailing list but I was trying to install yt yesterday and got this message during installation:</div><div><br></div><div>Installing yt</div><div>install_script.sh: line 992: syntax error near unexpected token `fi'</div><div>install_script.sh: line 992: `    fi'</div><div><br></div><div>I looked at the install_script.sh and found there was a missing "then" in the script. I'll send the details in case you need to change the install_script.</div><div><br></div><div>The problem is corrected by adding a then at line 990 replacing:</div><div><br></div><div>============================================================</div><div><br></div><div><div>if !( ( ${DEST_DIR}/bin/python2.7 -c "import readline" 2>&1 )>> ${LOG_FILE})</div><div>then</div><div>    if !( ( ${DEST_DIR}/bin/python2.7 -c "import gnureadline" 2>&1 )>> ${LOG_FILE})</div><div>      echo "Installing pure-python readline"<br></div><div>        ( ${DEST_DIR}/bin/pip install gnureadline 2>&1 ) 1>> ${LOG_FILE}</div><div>    fi</div><div>fi</div></div><div><br></div><div>============================================================<br></div><div><br></div><div>with:</div><div><br></div><div>============================================================<br></div><div><br></div><div><div>if !( ( ${DEST_DIR}/bin/python2.7 -c "import readline" 2>&1 )>> ${LOG_FILE})</div><div>then</div><div>    if !( ( ${DEST_DIR}/bin/python2.7 -c "import gnureadline" 2>&1 )>> ${LOG_FILE})</div><div><span style="white-space:pre-wrap">       </span>then</div><div>        echo "Installing pure-python readline"</div><div>        ( ${DEST_DIR}/bin/pip install gnureadline 2>&1 ) 1>> ${LOG_FILE}</div><div>    fi</div><div>fi</div></div><div><br></div><div>============================================================<br></div><div><br></div><div>Bests</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Aldo Batta</div><div><br></div>-- <br>Aldo Alberto Batta Márquez<br>Instituto de Astronomia<br>Universidad Nacional Autonoma de Mexico (UNAM)<br><a href="http://www.astroscu.unam.mx" target="_blank">http://www.astroscu.unam.mx</a>
</font></span></div>
<br>_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
<br></blockquote></div><br></div>