forked from GNUsocial/gnu-social
10 lines
409 B
Bash
Executable File
10 lines
409 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. bin/translate_container_name.sh
|
|
|
|
if [ "$#" -eq 0 ] || [ -z "$*" ]; then
|
|
docker exec "$(translate_container_name tooling_php_1)" /var/www/social/vendor/bin/php-cs-fixer -n --config=".php-cs-fixer.php" fix
|
|
else
|
|
docker exec "$(translate_container_name tooling_php_1)" sh -c "/var/www/social/vendor/bin/php-cs-fixer -q -n --config=\".php-cs-fixer.php\" fix --path-mode=intersection -- $*"
|
|
fi
|