kaikramer / keystore-explorer

KeyStore Explorer is a free GUI replacement for the Java command-line utilities keytool and jarsigner.
https://keystore-explorer.org/
GNU General Public License v3.0
1.7k stars 275 forks source link

Fix permissions of kse.sh in zip file, chmod +x gradlew #125

Closed toddkaufmann closed 6 years ago

toddkaufmann commented 6 years ago
  1. Fix so

    $ ./gradlew clean build

works as expected in README.md

  1. Mode of kse.sh was wrong in zip file; after just unzipping:

    $ ls 4 icons/ 2528 kse.jar 4 kse.sh 4 lib/ 4 licenses/ 4 readme.txt $ ./kse.sh /bin/bash: ./kse.sh: Permission denied $ ls -l kse.sh total 2556 4 --wxrw--wx 1 todd todd 427 Apr 13 16:50 kse.sh

Looks executable (and is), but not readable.. so permission denied. Mode was decimal; changed to octal and kse.sh now has expected permissions in new zip file.

I haven't even run kse yet, but looks interesting. Now it at least starts the program.

kaikramer commented 6 years ago

Thank you! 😃