The update of the plugins failed because the last step (chmod of the start script) failed. The command is:
chmod +x /Applications/JasperStudio_6.app/Contents/Eclipse/../MacOS//Jaspersoft Studio
Then response is:
chmod: Studio: No such file or directory
The probleme here are the spaces in the path. The whole path in this command must be enclosed in "
The correct command have to be:
chmod +x "/Applications/JasperStudio_6.app/Contents/Eclipse/../MacOS//Jaspersoft Studio"
or even better:
chmod +x "/Applications/JasperStudio_6.app/Contents/MacOS/Jaspersoft Studio"
Recommended Comments
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now