PageRenderTime 36ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/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
Possible License(s): LGPL-3.0, Apache-2.0, GPL-3.0, GPL-2.0, AGPL-3.0, JSON, BSD-3-Clause
  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