- fix running test in docker - use odoo user in docker - Makefile add repo_show_status - docker repo show status - Support older git version 2.20
9 lines
195 B
Bash
Executable file
9 lines
195 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
CURRENT=$(pwd)
|
|
BASENAME=$(basename "${CURRENT}")
|
|
|
|
docker exec -u root -ti ${BASENAME}_ERPLibre_1 /bin/bash -c "\
|
|
cd /ERPLibre; \
|
|
./.venv/repo forall -pc 'git status -s'; \
|
|
"
|