Fix release script
This commit is contained in:
parent
2106255c35
commit
bd8dba5e40
1 changed files with 2 additions and 2 deletions
|
|
@ -74,13 +74,13 @@ if "/artifacts/" not in artifactUrl:
|
||||||
print("❌ Invalid parameter --artifactUrl %s. Must contain '/artifacts/'" % artifactUrl)
|
print("❌ Invalid parameter --artifactUrl %s. Must contain '/artifacts/'" % artifactUrl)
|
||||||
exit(1)
|
exit(1)
|
||||||
artifactItems = artifactUrl.split("/")
|
artifactItems = artifactUrl.split("/")
|
||||||
if len(artifactItems) != 9:
|
if len(artifactItems) != 10:
|
||||||
print("❌ Invalid parameter --artifactUrl %s. Please check the format." % (artifactUrl))
|
print("❌ Invalid parameter --artifactUrl %s. Please check the format." % (artifactUrl))
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
gitHubRepoOwner = artifactItems[3]
|
gitHubRepoOwner = artifactItems[3]
|
||||||
gitHubRepo = artifactItems[4]
|
gitHubRepo = artifactItems[4]
|
||||||
artifactId = artifactItems[8]
|
artifactId = artifactItems[9]
|
||||||
|
|
||||||
if args.verbose:
|
if args.verbose:
|
||||||
print("gitHubRepoOwner: %s, gitHubRepo: %s, artifactId: %s" % (gitHubRepoOwner, gitHubRepo, artifactId))
|
print("gitHubRepoOwner: %s, gitHubRepo: %s, artifactId: %s" % (gitHubRepoOwner, gitHubRepo, artifactId))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue