Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

createAllPluginJar.sh 304B

123456789
  1. #!/bin/bash
  2. # This attempts to create a clean build of dmdirc, then if the build was a success
  3. # it will create plugin jars for all the plugins in the addons directory.
  4. if [ ${?} = "0" ]; then
  5. for dir in `ls -1 src/com/dmdirc/addons`; do
  6. ./createPluginJar.sh com.dmdirc.addons.${dir} ${dir}
  7. done
  8. fi