Skip to content

Commit 6af9a9a

Browse files
authored
fix: specify artifact_id to replace explicitly. (#6361)
This change should fix the issue that 4 artifacts are mapped to service "bigstore".
1 parent b098a81 commit 6af9a9a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.kokoro/nightly/create-versions-csv.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,12 @@ cat libraries.txt | while read line; do
3838
new_group_id="${group_id//.//}"
3939
service_name=${artifact_id#*-cloud-}
4040

41-
if [[ "${artifact_id}" == *storage* ]]; then
41+
if [[ "${artifact_id}" == google-cloud-storage ]]; then
4242
service_name=bigstore
4343
fi
44+
if [[ "${artifact_id}" == google-cloud-storage-transfer ]]; then
45+
service_name=storagetransfer
46+
fi
4447

4548
URL=https://repo1.maven.org/maven2/$new_group_id/$artifact_id
4649

0 commit comments

Comments
 (0)