diff options
author | Clement Ho <ClemMakesApps@gmail.com> | 2018-12-28 14:52:43 -0600 |
---|---|---|
committer | Clement Ho <ClemMakesApps@gmail.com> | 2018-12-28 14:52:43 -0600 |
commit | c9d7514fd8d46b0de126fb9d6d081ec25bd3c5bb (patch) | |
tree | 417386f11b8c9f44bfac861659603281d302f614 /scripts/rails4-gemfile-lock-check | |
parent | 77e1a9b0f8757109ca7f7a4398c46fe8d1d45dbe (diff) | |
parent | e962baf4417e59cbb2ef8621ef0662f93f180f92 (diff) | |
download | gitlab-ce-fix-popover-header-size.tar.gz |
Merge branch 'master' into fix-popover-header-sizefix-popover-header-size
Diffstat (limited to 'scripts/rails4-gemfile-lock-check')
-rwxr-xr-x | scripts/rails4-gemfile-lock-check | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/scripts/rails4-gemfile-lock-check b/scripts/rails4-gemfile-lock-check deleted file mode 100755 index a74a49874e1..00000000000 --- a/scripts/rails4-gemfile-lock-check +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -echo -e "=> Checking if Gemfile.rails4.lock is up-to-date...\\n" - -cp Gemfile.rails4.lock Gemfile.rails4.lock.orig -BUNDLE_GEMFILE=Gemfile.rails4 bundle install "$BUNDLE_INSTALL_FLAGS" -diff -u Gemfile.rails4.lock.orig Gemfile.rails4.lock >/dev/null 2>&1 - -if [ $? == 1 ] -then - diff -u Gemfile.rails4.lock.orig Gemfile.rails4.lock - - echo -e "\\nā ERROR: Gemfile.rails4.lock is not up-to-date! - Please run 'BUNDLE_GEMFILE=Gemfile.rails4 bundle install'\\n" >&2 - exit 1 -fi - -echo "ā Gemfile.rails4.lock is up-to-date" -exit 0 |