Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

14 lines
266 B

  1. #!/bin/bash
  2. for d in */ ; do
  3. echo "Building in $d..."
  4. cd $d
  5. sudo make clean install
  6. if [ $? -ne 0 ]; then
  7. echo "An error occured..."
  8. exit 1
  9. cd ..
  10. echo "Done..."
  11. done
  12. echo "All builds done, you might want to check whether any errors has occures