blob: e7eac13e39116a9903bf91a06755e2ccee585b1b (
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 '{}' \;
|