-
Notifications
You must be signed in to change notification settings - Fork 0
/
run.sh
executable file
·40 lines (31 loc) · 1.16 KB
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env bash
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
mkdir -p target
echo -n "Введите платформу (m1/m2) "
read item
case "$item" in
m1|M1) echo "=== Magento 1 ==="
echo -n "Введите название класса. (Например, Mygento_Boxberry_Helper_Discount): "
read class
echo -n "Введите код модуля. (Например, boxberry): "
read code
result=`php generate.php -p=m1 --class="$class" --code="$code"`
;;
m2|M2) echo "=== Magento 2 ==="
result=`php generate.php -p=m2`
;;
*) echo "Ничего не ввели. Генерим файл для Magento 2."
result=`php generate.php -p=m2`
;;
esac
echo
echo "=== Formatting file ==="
php vendor/bin/phpcbf --standard=vendor/magento-ecg/coding-standard/Ecg,vendor/mygento/coding-standard/Mygento-Mage1 ./target/
if [ "$result" == "0" ]; then
echo "${green}Файл успешно сгенерен. В папке ./target вас ждет свежий файл.${reset}"
else
echo "${red}Ошибка генерации файла${reset}"
echo "$result"
fi