0

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

8bitboy
  • 63
  • 3
  • 11

1 Answers1

2

Is your script executable?

chmod +x start.sh
cadrian
  • 7,332
  • 2
  • 33
  • 42
  • Tsss, what am I a noob... I'm a linux user for some months now and not knowing this is a shame. – 8bitboy May 14 '14 at 21:15