You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ko...@apache.org on 2010/08/12 05:16:18 UTC

svn commit: r984638 - /lucene/dev/trunk/solr/src/scripts/snapinstaller

Author: koji
Date: Thu Aug 12 03:16:15 2010
New Revision: 984638

URL: http://svn.apache.org/viewvc?rev=984638&view=rev
Log:
fix typo - curly bracket is not closed

Modified:
    lucene/dev/trunk/solr/src/scripts/snapinstaller

Modified: lucene/dev/trunk/solr/src/scripts/snapinstaller
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/scripts/snapinstaller?rev=984638&r1=984637&r2=984638&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/scripts/snapinstaller (original)
+++ lucene/dev/trunk/solr/src/scripts/snapinstaller Thu Aug 12 03:16:15 2010
@@ -131,7 +131,7 @@ logMessage command: $0 $@
 name=`perl -e 'chdir q|'${data_dir}'|; print ((sort grep {/^snapshot[.][1-9][0-9]{13}$/} <*>)[-1])'`
 
 # clean up after INT/TERM
-trap 'echo "caught INT/TERM, exiting now but partial installation may have already occured";/bin/rm -rf ${data_dir"/index.tmp$$;logExit aborted 13' INT TERM
+trap 'echo "caught INT/TERM, exiting now but partial installation may have already occured";/bin/rm -rf ${data_dir}/index.tmp$$;logExit aborted 13' INT TERM
 
 # is there a snapshot
 if [[ "${name}" == "" ]]