提交 be7d675f authored 作者: Thomas Mueller's avatar Thomas Mueller

--no commit message

--no commit message
上级 2a910f70
......@@ -17,6 +17,11 @@ Change Log
<h2>Next Version (unreleased)</h2>
<ul>
<li>-
</li></ul>
<h2>Version 1.0.72 (2008-05-10)</h2>
<ul>
<li>Some databases could not be opened when appending
;RECOVER=1 to the database URL.
</li><li>The Japanese translation of the error messages and the H2 Console
......
......@@ -37,7 +37,7 @@ package org.h2.engine;
* - Use latest versions of other dbs (Derby 10.4.1.3;
* PostgreSQL 8.3.1; MySQL 5.0.51)
* - Change version(s) in performance.html
* - Run 'ant benchmark' (with JDK 1.4 currently)
* - Run 'build benchmark' (with JDK 1.4 currently)
* - Copy the benchmark results and update the performance page and diagram
*
* - Documentation: if there are new files, add them to MergeDocs
......
......@@ -148,16 +148,17 @@ public class BuildBase {
/**
* Execute a script in a separate process.
*
* @param commandAndArgs the script name (for example mvn or ant) and the arguments
* In Windows, the batch file with this name (.bat) is run.
*
* @param script the program to run
* @param args the command line parameters
* @return the exit value
*/
protected int execScript(String command, String[] args) {
protected int execScript(String script, String[] args) {
if (isWindows()) {
command = command + ".bat";
script = script + ".bat";
}
return exec(command, args);
return exec(script, args);
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论