add script to update all
[buildscripts] / update-builds
1 #!/bin/bash
2
3
4 cd "${BASH_SOURCE%/*}" # directory of the script
5 for x in *; do
6 if [[ $x == update-builds || ! -x $x || -d $x ]]; then
7 continue
8 fi
9 $x -u
10 done