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.

15 lines
263 B

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