/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
- #!/bin/bash
- echo 'Start unsigning the JARs';
- find ../dist -name "*.jar" -exec ./unsignjars.sh '{}' \;
- echo 'Start signing the JARs';
- find ../dist -name "*.jar" -exec jarsigner -keystore mpv5store -keypass password -storepass password '{}' mpv5key \;
- echo 'JARs signed';
- exit 0