Reputation: 63
why can't I run a jar from a shellscript when double clicking it?
Failed to execute child process "~/start.sh" (Permission denied)
#!/bin/bash java -jar test.jar
I'm running on Arch linux x64
Upvotes: 0
Views: 2178
Reputation: 7376
Is your script executable?
chmod +x start.sh
Upvotes: 2