X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=update-builds;fp=update-builds;h=b2c71d4e5efff5ef0a4159eb2db30d1e47b50b87;hb=ddbe0926f54835ac1b48b050762043b22f01966d;hp=0000000000000000000000000000000000000000;hpb=dbaee6ec145381a8b1e15e6e9b56de22bb21e607;p=buildscripts diff --git a/update-builds b/update-builds new file mode 100755 index 0000000..b2c71d4 --- /dev/null +++ b/update-builds @@ -0,0 +1,10 @@ +#!/bin/bash + + +cd "${BASH_SOURCE%/*}" # directory of the script +for x in *; do + if [[ $x == update-builds || ! -x $x || -d $x ]]; then + continue + fi + $x -u +done