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.

update-apps.sh 841B

1234567891011121314
  1. #!/bin/bash
  2. # Update Nextcloud apps from latest git master
  3. # For local development environment
  4. # Use from Nextcloud server folder with `./build/update-apps.sh`
  5. #
  6. # It automatically:
  7. # - goes through all apps which are not shipped via server
  8. # - shows the app name in bold and uses whitespace for separation
  9. # - changes to master and pulls quietly
  10. # - shows the 3 most recent commits for context
  11. # - removes branches merged into master
  12. # - … could even do the build steps if they are consistent for the apps (like `make`)
  13. find apps* -maxdepth 2 -name .git -exec sh -c 'cd {}/../ && printf "\n\033[1m${PWD##*/}\033[0m\n" && git checkout master && git pull --quiet -p && git --no-pager log -3 --pretty=format:"%h %Cblue%ar%x09%an %Creset%s" && printf "\n" && git branch --merged master | grep -v "master$" | xargs git branch -d && cd ..' \;