From 1a7d60ccc8a358946e76f93f7b0d1f22ed053560 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 30 Oct 2022 14:24:53 +0100 Subject: [PATCH] Fix phpcs script --- .ci/phpcs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/phpcs.sh b/.ci/phpcs.sh index 285fd2deb8..8479e000c8 100755 --- a/.ci/phpcs.sh +++ b/.ci/phpcs.sh @@ -31,7 +31,7 @@ SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) # clean up php code cd $SCRIPT_DIR/php-cs-fixer composer update -./vendor/bin/php-cs-fixer fix $SCRIPT_DIR/../app/Console --config $SCRIPT_DIR/php-cs-fixer/.php-cs-fixer.php --allow-risky=yes +./vendor/bin/php-cs-fixer fix $SCRIPT_DIR/../app --config $SCRIPT_DIR/php-cs-fixer/.php-cs-fixer.php --allow-risky=yes cd $SCRIPT_DIR/.. exit 0