Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
280 B

#!/usr/bin/env bash
set -e
PACKAGE_FILE="package.json"
SEARCH_STRING="github:roadmapsh/web-draw-v2"
if grep -q "$SEARCH_STRING" "$PACKAGE_FILE"; then
echo "❌ Commit blocked! '$SEARCH_STRING' found in $PACKAGE_FILE."
exit 1
fi
echo "✅ Pre-commit check passed."
exit 0