bulk-update-apps.sh 194 B

12345678910
  1. #!/bin/bash
  2. set -e
  3. for file in */.gitsubtree; do
  4. app="$(dirname "${file}")"
  5. echo -e "\n\nUpdating ${app}..."
  6. pushd "${app}" > /dev/null
  7. git update-app
  8. popd > /dev/null
  9. done