/security/signjars.sh
Shell | 7 lines | 6 code | 0 blank | 1 comment | 0 complexity | 8e2642665c8022895cf73a9a8e3a541f MD5 | raw file
Possible License(s): LGPL-3.0, Apache-2.0, GPL-3.0, GPL-2.0, AGPL-3.0, JSON, BSD-3-Clause
- #!/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