Reputation: 1734
Trying to upload file using the following command in terminal:
run uploadAttachment jar: /abc.jar
It generates error:
run uploadAttachment jar:: command not found
Upvotes: 0
Views: 80
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