Skip to content

Commit

Permalink
modified: buildAPKs/prep.bash
Browse files Browse the repository at this point in the history
  • Loading branch information
SDRausty committed Oct 18, 2021
1 parent b60251c commit 28fb719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildAPKs/prep.bash
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ VERSION="$(cut -d" " -f3 <<< "$ONEDEP")"
[ -f "${ARTIFACTID}-${VERSION}.aar" ] || curl -OL "https://maven.google.com/${GROUPID%%\.*}/${ARTIFACTID}/${ARTIFACTID}/${VERSION}/${ARTIFACTID}-${VERSION}.aar"
[ -f "${ARTIFACTID}-${VERSION}.jar" ] || curl -OL "https://maven.google.com/${GROUPID%%\.*}/${ARTIFACTID}/${ARTIFACTID}/${VERSION}/${ARTIFACTID}-${VERSION}.jar"
}
DEPSLIST="$(find . -name build.gradle -exec grep implementation {} \; | grep -v \/\/ | grep -v fileTree\ \( | grep -v project\ \( | grep -v fileTree\( | grep -v project\( | grep -v Class | grep -v Deps | grep -v \= | sort | uniq)"
DEPSLIST="$(find . -name build.gradle -exec grep -e compile -e implementation {} \; | grep -v \/\/ | grep -v fileTree\ \( | grep -v project\ \( | grep -v fileTree\( | grep -v project\( | grep -v Class | grep -v Deps | grep -v \= | sort | uniq)"
WDR="$PWD"
([ -d "$RDR/var/cache/artifacts" ] || mkdir -p "$RDR/var/cache/artifacts") && cd "$RDR/var/cache/artifacts"
for ONEDEP in $DEPSLIST
Expand Down

1 comment on commit 28fb719

@SDRausty
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.