Tusshu
Tusshu

Reputation: 1734

Upload attachment using Corda shell not working?

Trying to upload file using the following command in terminal:

run uploadAttachment jar: /abc.jar

It generates error:

run uploadAttachment jar:: command not found

Using these docs.

Upvotes: 0

Views: 80

Answers (1)

Joel
Joel

Reputation: 23140

There is in an error in the documentation. It should be either:

run uploadAttachment jar: ./abc.jar

Or:

run uploadAttachment jar: abc.jar

If the file cannot be found, you will get the following exception:

Could not parse as a command: <jar-path>

Upvotes: 1

Related Questions