File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -104,13 +104,13 @@ add_tracking_version() {
104
104
validate_jar () {
105
105
local library=$1
106
106
if [[ $library == * /gwt/libgwt.jar ]]; then
107
- python $( dirname $0 ) /validate-jar-entry-prefixes.py \
107
+ python3 $( dirname $0 ) /validate-jar-entry-prefixes.py \
108
108
$library " dagger/,META-INF/,javax/inject/"
109
109
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 \
111
111
$library " dagger/,META-INF/,hilt_aggregated_deps/"
112
112
else
113
- python $( dirname $0 ) /validate-jar-entry-prefixes.py \
113
+ python3 $( dirname $0 ) /validate-jar-entry-prefixes.py \
114
114
$library " dagger/,META-INF/"
115
115
fi
116
116
}
@@ -136,7 +136,7 @@ find_pom_value() {
136
136
local attribute=$2
137
137
# Using Python here because `mvn help:evaluate` doesn't work with our gen pom
138
138
# 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
140
140
}
141
141
142
142
deploy_library " $@ "
You can’t perform that action at this time.
0 commit comments