Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

createAllPluginJar.sh 439B

123456789101112131415
  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. if [ -e "src/com/dmdirc/addons/${dir}/.ignore" ]; then
  7. echo "------"
  8. echo "Not building: ${dir}"
  9. echo "------"
  10. else
  11. ./createPluginJar.sh com.dmdirc.addons.${dir} ${dir}
  12. fi
  13. done
  14. fi