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:14:09 UTC

svn commit: r984637 - /lucene/dev/branches/branch_3x/solr/src/scripts/snapinstaller

Author: koji
Date: Thu Aug 12 03:14:09 2010
New Revision: 984637

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

Modified:
    lucene/dev/branches/branch_3x/solr/src/scripts/snapinstaller

Modified: lucene/dev/branches/branch_3x/solr/src/scripts/snapinstaller
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/src/scripts/snapinstaller?rev=984637&r1=984636&r2=984637&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/src/scripts/snapinstaller (original)
+++ lucene/dev/branches/branch_3x/solr/src/scripts/snapinstaller Thu Aug 12 03:14:09 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}" == "" ]]