From a2f62e1b1bb3744649e90dbd80ee0f9a2165a655 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 27 Aug 2023 16:56:19 -0700 Subject: [PATCH] Minor cleanup --- .github/workflows/bld.yml | 2 +- README.md | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/bld.yml b/.github/workflows/bld.yml index ddcc35c..55fefbf 100644 --- a/.github/workflows/bld.yml +++ b/.github/workflows/bld.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - java-version: [ 17, 19, 20 ] + java-version: [ 17, 20 ] steps: - name: Checkout source repository diff --git a/README.md b/README.md index b9220a4..a43b399 100755 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To execute a command at the command line, add the following to your build file: public void startServer() throws Exception { new ExecOperation() .fromProject(this) - .command("./start.sh") + .command("./start.sh", "--port", "8080") .execute(); } ``` @@ -71,8 +71,3 @@ public void startServer() throws Exception { .execute(); } ``` - - - - -