mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
8 lines
177 B
Text
8 lines
177 B
Text
branch="$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
if [ "$branch" = "main" ]; then
|
|
echo "You can't push directly to main - please check out a branch."
|
|
exit 1
|
|
fi
|
|
|
|
pnpm check-types
|