Skip to content

Commit

Permalink
Updated Pipeliner
Browse files Browse the repository at this point in the history
Signed-off-by: dhoard <[email protected]>
  • Loading branch information
dhoard committed Dec 16, 2024
1 parent cadddf3 commit 62e81c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Binary file modified .pipeliner/verifyica-pipeliner.jar
Binary file not shown.
8 changes: 7 additions & 1 deletion pipeliner
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/bash

if ! command -v java >/dev/null 2>&1; then
echo "Java is not installed or not in the PATH"
exit 1
fi

CURRENT_DIR="$(pwd)"
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
SCRIPT_NAME="$(basename "$0")"
Expand All @@ -10,7 +15,8 @@ cd "$SCRIPT_DIR" || exit 1

if [ $# -eq 0 ]; then
echo "Usage: $(basename "$0") <pipeline.yaml> [pipeline2.yaml...]"
cd "$CURRENT_DIR" || exit 1
cd "$CURRENT_DIR"
exit 1
fi

JAR_PATH="target/verifyica-pipeliner.jar"
Expand Down

0 comments on commit 62e81c8

Please sign in to comment.