[infinispan-issues] [JBoss JIRA] (ISPN-2733) Issue with the release script (bin/release.py)

Mircea Markus (JIRA) jira-events at lists.jboss.org
Sat Jan 19 09:17:21 EST 2013


Mircea Markus created ISPN-2733:
-----------------------------------

             Summary: Issue with the release script (bin/release.py)
                 Key: ISPN-2733
                 URL: https://issues.jboss.org/browse/ISPN-2733
             Project: Infinispan
          Issue Type: Bug
    Affects Versions: 5.2.0.CR1
            Reporter: Mircea Markus
            Assignee: Tristan Tarrant
            Priority: Critical
             Fix For: 5.2.0.Final


I get the following exception when running the release script:
{quote}
[INFO] Step 6: Uploading Artifacts
Traceback (most recent call last):
  File "./bin/release.py", line 367, in <module>
    release()
  File "./bin/release.py", line 332, in release
    do_task(upload_artifacts, [base_dir % "as-modules", version], async_processes)
TypeError: not all arguments converted during string formatting

{quote}
Seems like there's an incorrect string concatenation at line 332:
{code}
  do_task(upload_artifacts, [base_dir % "as-modules", version], async_processes)
{code}
Using string concatenation seems to solve the problem:
{code}
do_task(upload_artifacts, [base_dir + "/as-modules", version], async_processes)
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the infinispan-issues mailing list