зеркало из
https://github.com/glebtv/telegram-bot.git
synced 2026-08-28 15:26:18 +03:00
15 строки
268 B
Bash
Исполняемый файл
15 строки
268 B
Bash
Исполняемый файл
#!/bin/bash
|
|
|
|
pattern=$(echo -n '\.rb
|
|
\.gemspec
|
|
\.jbuilder
|
|
\.rake
|
|
config\.ru
|
|
Gemfile
|
|
Rakefile' | tr "\\n" '|')
|
|
|
|
files=`git diff --cached --name-status | grep -E "^[AM].*($pattern)$" | cut -f2-`
|
|
if [ -n "$files" ]; then
|
|
bundle exec rubocop $files --force-exclusion
|
|
fi
|