We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbd2190 commit 51910deCopy full SHA for 51910de
1 file changed
.github/workflows/update-cli.yml
@@ -44,10 +44,10 @@ jobs:
44
curl "https://repo1.maven.org/maven2/com/checkmarx/ast/ast-cli-java-wrapper/${{ steps.ast-cli-java-wrapper.outputs.release_tag }}/${new_version}" --output $new_version
45
46
# Track the new JAR file with LFS
47
- FILE_PATH="$new_version" # Correct path
+ FILE_PATH="checkmarx-ast-eclipse-plugin/lib/$new_version" # Correct path
48
+ echo "FILE_PATH: $FILE_PATH"
49
# Create the directory if it doesn't exist (important!)
- mkdir -p "checkmarx-ast-eclipse-plugin/lib"
50
- mv $new_version $FILE_PATH
+ # mv $new_version $FILE_PATH
51
# Ensure the file exists after download
52
if [ ! -f "$FILE_PATH" ]; then
53
echo "Error: File $FILE_PATH not found after download."
0 commit comments