File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,13 @@ add_tracking_version() {
104104validate_jar () {
105105 local library=$1
106106 if [[ $library == * /gwt/libgwt.jar ]]; then
107- python $( dirname $0 ) /validate-jar-entry-prefixes.py \
107+ python3 $( dirname $0 ) /validate-jar-entry-prefixes.py \
108108 $library " dagger/,META-INF/,javax/inject/"
109109 elif [[ $library == * /java/dagger/hilt/android/artifact.aar ]]; then
110- python $( dirname $0 ) /validate-jar-entry-prefixes.py \
110+ python3 $( dirname $0 ) /validate-jar-entry-prefixes.py \
111111 $library " dagger/,META-INF/,hilt_aggregated_deps/"
112112 else
113- python $( dirname $0 ) /validate-jar-entry-prefixes.py \
113+ python3 $( dirname $0 ) /validate-jar-entry-prefixes.py \
114114 $library " dagger/,META-INF/"
115115 fi
116116}
@@ -136,7 +136,7 @@ find_pom_value() {
136136 local attribute=$2
137137 # Using Python here because `mvn help:evaluate` doesn't work with our gen pom
138138 # files since they don't include the aar packaging plugin.
139- python $( dirname $0 ) /find_pom_value.py $pomfile $attribute
139+ python3 $( dirname $0 ) /find_pom_value.py $pomfile $attribute
140140}
141141
142142deploy_library " $@ "
You can’t perform that action at this time.
0 commit comments