You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dev.sh 494 B

12345678910111213141516171819202122
  1. #!/bin/bash
  2. set -e
  3. if [ ! -f README.md ]; then
  4. echo "You seems to be in the wrong directory"
  5. echo "Execute this script from the root of LessPass with ./scripts/${0##*/}"
  6. exit 1
  7. fi
  8. function dev {
  9. echo
  10. }
  11. submodules="backend cli cordova core cozy desktop frontend move nginx openssl pure render-password snap webextension"
  12. #submodules="cli cordova core cozy desktop frontend move pure webextension"
  13. for submodule in ${submodules}
  14. do
  15. pushd ${submodule}
  16. dev
  17. popd
  18. done