X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=all;h=a409faa0b7b9eff7f07c39a6ff582edd10ff98d3;hp=c062d95684653c1a63a93d5f63d1b403c71da1c7;hb=a3518ca2fb238b13d1bddc4c45855a78c7db7127;hpb=fe9e135a69b6daa403f88421e9e13cfbd5ee4ff5 diff --git a/all b/all index c062d956..a409faa0 100755 --- a/all +++ b/all @@ -2,6 +2,8 @@ set -e +self=`cat "$0"` + verbose() { echo "+ $@" @@ -120,6 +122,7 @@ case "$cmd" in done "$0" branch fi + export XONOTIC_FORBID_RERUN_ALL=1 ;; branches) for d in $repos; do @@ -128,6 +131,7 @@ case "$cmd" in git branch -a | sed 's/^/ /; /->/d' cd "$d0" done + export XONOTIC_FORBID_RERUN_ALL=1 ;; push) for d in $repos; do @@ -146,6 +150,7 @@ case "$cmd" in fi cd "$d0" done + export XONOTIC_FORBID_RERUN_ALL=1 ;; compile) if [ -z "$MAKEFLAGS" ]; then @@ -164,6 +169,7 @@ case "$cmd" in verbose make $MAKEFLAGS sv-debug verbose make $MAKEFLAGS cl-debug verbose make $MAKEFLAGS sdl-debug + export XONOTIC_FORBID_RERUN_ALL=1 ;; run) client=-sdl @@ -187,6 +193,7 @@ case "$cmd" in fi #verbose "darkplaces/darkplaces$client" -xonotic "$@" verbose "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic "$@" + export XONOTIC_FORBID_RERUN_ALL=1 ;; each|foreach) for d in $repos; do @@ -194,6 +201,7 @@ case "$cmd" in verbose "$@" cd "$d0" done + export XONOTIC_FORBID_RERUN_ALL=1 ;; *) echo "Usage:" @@ -205,5 +213,20 @@ case "$cmd" in echo " $0 compile" echo " $0 run " echo " $0 each " + export XONOTIC_FORBID_RERUN_ALL=1 ;; esac + +self_new=`cat "$0"` +if [ x"$self" != x"$self_new" ]; then + echo "./all has changed." + if [ -z "$XONOTIC_FORBID_RERUN_ALL" ]; then + echo "Rerunning the requested operation to make sure." + export XONOTIC_FORBID_RERUN_ALL=1 + "$0" update + "$0" "$@" + else + echo "Please try $0 update, and then retry your requested operation." + exit 1 + fi +fi