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 @@ -253,9 +253,9 @@ verify_valid_archives() {
253
253
print_error " Failed to verify that ${A} can be extracted"
254
254
RC=4
255
255
fi
256
- # NOTE: 38 chosen because the static-libs is 38 for JDK21/AIX - maybe switch for different tarballs in the future?
257
- if [ " $( tar tfz " ${A} " | wc -l) " -lt 38 ]; then
258
- print_error " Less than 38 files in ${A} - that does not seem correct"
256
+ # NOTE: 37 chosen because the static-libs is 37 for JDK21/AIX - maybe switch for different tarballs in the future?
257
+ if [ " $( tar tfz " ${A} " | wc -l) " -lt 37 ]; then
258
+ print_error " Fewer than 38 files in ${A} - that does not seem correct"
259
259
RC=4
260
260
fi
261
261
done
@@ -285,7 +285,7 @@ verify_valid_archives() {
285
285
RC=4
286
286
fi
287
287
if [ " $( tar tfz " ${A} " | wc -l) " -lt 45000 ]; then
288
- print_error " less than 45000 files in source archive ${A} - that does not seem correct"
288
+ print_error " Fewer than 45000 files in source archive ${A} - that does not seem correct"
289
289
RC=4
290
290
fi
291
291
done
You can’t perform that action at this time.
0 commit comments