11 lines
223 B
Bash
Executable file
11 lines
223 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'; \
|
|
echo ''; \
|
|
git status -s; \
|
|
"
|