aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/proupgrade.sh
blob: a2f60e5a894da35057ba21fe35cd1eb8a36980b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

basedir="$(dirname "$0")"
[ "$(echo "$basedir" | cut -c1)" = '/' ] || basedir="$PWD/$basedir"

awlsim_base="$basedir/.."

set -e

if ! [ -x "$awlsim_base/awlsim-test" -a -x "$awlsim_base/setup.py" ]; then
	echo "basedir sanity check failed"
	exit 1
fi

cd "$awlsim_base"
find . -name '*.awlpro' \
	-a -type f \
	-a \! -path '*/tests/*legacy/*' \
	-a \! -path '*/submodules/*' \
	-a \! -path '*/.*/*' \
	-exec ./awlsim-proupgrade --loglevel 3 '{}' \;
bues.ch cgit interface