debian-mirror-gitlab/scripts/gemfile_lock_changed.sh

27 lines
406 B
Bash
Raw Normal View History

2020-04-08 14:13:33 +05:30
#!/bin/sh
gemfile_lock_changed() {
if [ -n "$(git diff --name-only -- Gemfile.lock)" ]; then
2020-06-23 00:09:42 +05:30
cat <<EOF
2020-04-08 14:13:33 +05:30
Gemfile was updated but Gemfile.lock was not updated.
Usually, when Gemfile is updated, you should run
\`\`\`
bundle install
\`\`\`
or
\`\`\`
bundle update <the-added-or-updated-gem>
\`\`\`
and commit the Gemfile.lock changes.
EOF
exit 1
fi
}
gemfile_lock_changed