git://git.exim.org
/
buildfarm-client.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Turn off some more compier warnings, in default CFLAGS
[buildfarm-client.git]
/
run_cron.sh
diff --git
a/run_cron.sh
b/run_cron.sh
index 8a6f604731b91aec63a477a45375d033a26c8f56..930663822ddaf4d4ece8288d27b64106d8f39cb2 100755
(executable)
--- a/
run_cron.sh
+++ b/
run_cron.sh
@@
-1,5
+1,17
@@
#!/bin/sh
#!/bin/sh
+new=${0%.sh}
+
+if test -t; then
+ cat <<___ >&2
+`basename $0`: Please use $new (note the missing extension!) instead.
+This ($0) script will be removed without any further notice.
+___
+ exit 1
+fi
+
+exec $new "$@"
+
if which dirname >/dev/null; then
BFDIR=`dirname $0`
elif [ "x${BFDIR}" = "x" ]; then
if which dirname >/dev/null; then
BFDIR=`dirname $0`
elif [ "x${BFDIR}" = "x" ]; then
@@
-10,7
+22,15
@@
fi
cd $BFDIR
# Update the build client if new version available
if which git >/dev/null; then
cd $BFDIR
# Update the build client if new version available
if which git >/dev/null; then
- git pull
+ git pull >/dev/null
+fi
+
+# Sanitize or set up environment
+# 1) Remove because spec.txt generation fails if set
+if env | grep -q '/bin/bash'; then
+ export -n PERL_UNICODE
+else
+ unset PERL_UNICODE
fi
./run_branches.pl $@
fi
./run_branches.pl $@