Skip to content

Commit

Permalink
Change jar files tag to BINARY (#601)
Browse files Browse the repository at this point in the history
This patch changes jar files tagging to BINARY

Signed-off-by: Pasam Soujanya <psoujany@in.ibm.com>
  • Loading branch information
psoujany committed Aug 29, 2024
1 parent 9b06e97 commit 1b43848
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/getDependencies.pl
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,8 @@ sub downloadFile {
# note _ENCODE_FILE_NEW flag is set for zos
if ('.txt' eq substr $filename, -length('.txt')) {
$output = qx{_ENCODE_FILE_NEW=ISO8859-1 curl $curlOpts -k -o $filename $url 2>&1};
} elsif ('.jar' eq substr $filename, -length('.jar')) {
$output = qx{_ENCODE_FILE_NEW=BINARY curl $curlOpts -k -o $filename $url 2>&1};
} else {
$output = qx{_ENCODE_FILE_NEW=UNTAGGED curl $curlOpts -k -o $filename $url 2>&1};
}
Expand Down

0 comments on commit 1b43848

Please sign in to comment.