/security/signjars.sh
Shell | 7 lines | 6 code | 0 blank | 1 comment | 0 complexity | 8e2642665c8022895cf73a9a8e3a541f MD5 | raw file
1#!/bin/bash 2echo 'Start unsigning the JARs'; 3find ../dist -name "*.jar" -exec ./unsignjars.sh '{}' \; 4echo 'Start signing the JARs'; 5find ../dist -name "*.jar" -exec jarsigner -keystore mpv5store -keypass password -storepass password '{}' mpv5key \; 6echo 'JARs signed'; 7exit 0