forked from GNUsocial/gnu-social
12 lines
256 B
Plaintext
12 lines
256 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
translate_container_name () {
|
||
|
if docker container inspect "$1" > /dev/null 2>&1; then
|
||
|
echo "$1"
|
||
|
else
|
||
|
echo "$1" | sed 'y/_/-/'
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
docker exec "$(translate_container_name tooling_php_1)" /var/tooling/phpstan.sh "$@"
|