Newer
Older

Heiko Wolf
committed
#!/bin/bash
red="\e[0;91m"
green="\e[0;92m"
clean="\e[0m"
if [ -z $1 ]
then
echo -e "\n${red}Nicht genau angegeben was ich tun soll.${clean}\n"
echo -e "---------------------------------------------------------------------------"
echo -e "\n ./install-codestylechecker.sh install - install the checker and hooks\n"
echo -e "\n ./install-codestylechecker.sh update - update the checker and hooks\n"
echo -e "--------------------------------------------------------------------------\n"
exit 1
fi

Heiko Wolf
committed
if [ $(which curl) != "/usr/bin/curl" ]
then
echo -e "\n${red}Benötigt curl.\n"
exit 1

Heiko Wolf
committed

Heiko Wolf
committed
reset
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
if [ $1 = "install" ]
then
gitdir=$(pwd)
echo -e "${green}Install...${clean}\n"
mkdir -p $HOME/bin/codestylechecker
cd $HOME/bin/codestylechecker
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
curl -OL https://alpha.finc.info/vufind2/logs/alpha/CodeSniffer.conf
chmod +x $HOME/bin/codestylechecker/phpcs.phar
echo -e "\n${green}Kopiere Hooks nach ${gitdir}/.git/hooks\n${clean}"
cd $gitdir/.git/hooks/
mv pre-commit pre-commit.old.$(date +%Y-%m-%d)
mv pre-push pre-push.old.$(date +%Y-%m-%d)
curl -OL https://alpha.finc.info/vufind2/logs/alpha/pre-commit
curl -OL https://alpha.finc.info/vufind2/logs/alpha/pre-push
chmod +x $gitdir/.git/hooks/pre-commit
chmod +x $gitdir/.git/hooks/pre-push
echo -e "\n${green}Ready${clean}\n"
exit 0
elif [ $1 = "update" ]
then

Heiko Wolf
committed
echo -e "\n${green}Update...${clean}\n"

Heiko Wolf
committed

Heiko Wolf
committed
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar

Heiko Wolf
committed
chmod +x $HOME/bin/codestylechecker/phpcs.phar

Heiko Wolf
committed

Heiko Wolf
committed
mv pre-commit pre-commit.old.$(date +%Y-%m-%d)
mv pre-push pre-push.old.$(date +%Y-%m-%d)

Heiko Wolf
committed
curl -OL https://alpha.finc.info/vufind2/logs/alpha/pre-commit
curl -OL https://alpha.finc.info/vufind2/logs/alpha/pre-push

Heiko Wolf
committed
chmod +x $gitdir/.git/hooks/pre-commit
chmod +x $gitdir/.git/hooks/pre-push

Heiko Wolf
committed
echo -e "\n${green}Ready.${clean}\n"
exit 0
fi

Heiko Wolf
committed
echo -e "\n${red}Nix ist passiert.${clean}\n"

Heiko Wolf
committed

Heiko Wolf
committed
#heiko.wolf@uni-leipzig.de, 2021