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

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