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.

17 lines
496 B

  1. #!/bin/bash
  2. # update drupal console
  3. echo 'updating Drupal console';
  4. /usr/local/bin/drupal self-update;
  5. # update nvm
  6. echo 'updating nvm';
  7. /usr/bin/curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.1/install.sh | bash;w;
  8. # update brew things
  9. echo 'updating brew things';
  10. /usr/local/bin/brew update && brew install `brew outdated`;
  11. # update pip & all pip things
  12. echo 'update pip & things';
  13. /usr/local/bin/pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs pip install -U