Skip to content

Commit debd930

Browse files
Use local phpcs (in vendor) over global if it exists
1 parent 2edef90 commit debd930

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

pre-commit

+8-1
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,16 @@ then
2020
NC='\033[0m'
2121
fi
2222

23+
# Use local or global phpcs. Local has the priority.
24+
GIT_DIR=$(git rev-parse --show-toplevel)
25+
PHPCS="phpcs"
26+
if [ -f "$GIT_DIR/vendor/bin/phpcs" ]; then
27+
PHPCS="$GIT_DIR/vendor/bin/phpcs"
28+
fi
29+
2330
# Generate diff file from phpcs.
2431
echo ${GREEN}Creating patch for staged files\(can take some time\).${NC}
25-
phpcs -p --report-diff=phpcspatch.diff $FILES
32+
$PHPCS -p --report-diff=phpcspatch.diff $FILES
2633

2734
# Check if there is anything to patch.
2835
WORDS=$( cat phpcspatch.diff | wc -m )

0 commit comments

Comments
 (0)