13 lines
646 B
Bash
13 lines
646 B
Bash
#!/bin/bash
|
|
set -eu
|
|
cd /root/aza-app
|
|
python3 -m py_compile empfang_routes.py && echo COMPILE_OK
|
|
grep -q 'AzA Chat' web/empfang.html && echo MARKER_AZA_CHAT=OK
|
|
grep -q 'header-user-block' web/empfang.html && echo MARKER_HEADER=OK
|
|
grep -q 'formatTaskReplyBlock' web/empfang.html && echo MARKER_REPLY=OK
|
|
grep -q 'navigateFromTaskBadgeClick' web/empfang.html && echo MARKER_NAV=OK
|
|
grep -q '/shell/nav-open' web/empfang.html && echo MARKER_SHELL_NAV=OK
|
|
grep -q 'nav_open_kind' empfang_routes.py && echo MARKER_NAV_KIND=OK
|
|
grep -q '@router.post("/shell/nav-open")' empfang_routes.py && echo MARKER_ROUTE=OK
|
|
sha256sum web/empfang.html empfang_routes.py
|