Version 1.0.5

This commit is contained in:
Erik C. Thauvin 2025-03-28 07:25:25 -07:00
parent 3efcb61eab
commit 1979f58cb9
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ Use the `failOnExit` function to specify whether a command non-zero exit value (
@BuildCommand @BuildCommand
public void startServer() throws Exception { public void startServer() throws Exception {
final List<String> cmds; final List<String> cmds;
if (System.getProperty("os.name").toLowerCase().contains("windows")) { if (System.getProperty("os.name").toLowerCase().contains("win")) {
cmds = List.of("cmd", "/c", "stop.bat"); cmds = List.of("cmd", "/c", "stop.bat");
} else { } else {
cmds = List.of("./stop.sh"); cmds = List.of("./stop.sh");

View file

@ -33,7 +33,7 @@ public class ExecOperationBuild extends Project {
public ExecOperationBuild() { public ExecOperationBuild() {
pkg = "rife.bld.extension"; pkg = "rife.bld.extension";
name = "ExecOperation"; name = "ExecOperation";
version = version(1, 0, 5, "SNAPSHOT"); version = version(1, 0, 5);
javaRelease = 17; javaRelease = 17;