/security/signjars.sh

http://mp-rechnungs-und-kundenverwaltung.googlecode.com/ · Shell · 7 lines · 6 code · 0 blank · 1 comment · 0 complexity · 8e2642665c8022895cf73a9a8e3a541f MD5 · raw file

  1. #!/bin/bash
  2. echo 'Start unsigning the JARs';
  3. find ../dist -name "*.jar" -exec ./unsignjars.sh '{}' \;
  4. echo 'Start signing the JARs';
  5. find ../dist -name "*.jar" -exec jarsigner -keystore mpv5store -keypass password -storepass password '{}' mpv5key \;
  6. echo 'JARs signed';
  7. exit 0