Skip to content

Commit

Permalink
Fix (c) causing a c into versions in dependency report
Browse files Browse the repository at this point in the history
  • Loading branch information
stoyicker committed Nov 18, 2023
1 parent 4c53b26 commit 8770551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .scripts/dependency_report_generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if [ -z "${CONFIGURATION+x}" ]; then
exit 1
fi

read -r -d '' -a WITH_ADJUSTED < <(./gradlew --console=plain "$MODULE":dependencies --configuration "$CONFIGURATION" | grep --color=never -o "\S*:.*:.*" | grep --color=never -v "/" | fgrep --color=never -v "$MODULE:dependencies" | awk 'NR > 1' | tr -d " (*)" && printf '\0' )
read -r -d '' -a WITH_ADJUSTED < <(./gradlew --console=plain "$MODULE":dependencies --configuration "$CONFIGURATION" | grep --color=never -o "\S*:.*:.*" | grep --color=never -v "/" | fgrep --color=never -v "$MODULE:dependencies" | tr -d " " | sed 's/(\*)//' | sed 's/(c)//' && printf '\0' )

RESOLVED=()
REGEX_PATTERN_DEPENDENCY_WITH_VERSION_UPGRADED='.*:.*:.*->.*'
Expand Down

0 comments on commit 8770551

Please sign in to comment.