mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-04-16 14:59:11 +00:00
8 lines
102 B
Bash
Executable file
8 lines
102 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ ! -z "$(git status --porcelain)" ]]
|
|
then
|
|
echo "push"
|
|
else
|
|
echo "do nothing"
|
|
fi
|