diff options
| author | Josh Hagins | 2015-07-10 09:46:35 -0400 |
|---|---|---|
| committer | Mike McQuaid | 2015-09-07 12:05:20 +0100 |
| commit | f431e543a5f155fd64d397ae04d269c3907f42b7 (patch) | |
| tree | 38b007382203bc5c327b969831951ab94254473a /Library/Homebrew/test | |
| parent | 8d2e757253bba2e9a471ca1ff8285df62076db9a (diff) | |
| download | brew-f431e543a5f155fd64d397ae04d269c3907f42b7.tar.bz2 | |
update: explicitly no-ff merge and rebase.
This overrides user configuration which may do otherwise.
Closes Homebrew/homebrew#41570.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/test')
| -rw-r--r-- | Library/Homebrew/test/test_updater.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_updater.rb b/Library/Homebrew/test/test_updater.rb index 87e175ea3..88f8c23aa 100644 --- a/Library/Homebrew/test/test_updater.rb +++ b/Library/Homebrew/test/test_updater.rb @@ -61,7 +61,7 @@ class UpdaterTests < Homebrew::TestCase @updater.in_repo_expect("git symbolic-ref --short HEAD", "master") @updater.in_repo_expect("git rev-parse -q --verify HEAD", "1234abcd") @updater.in_repo_expect("git config core.autocrlf false") - @updater.in_repo_expect("git pull --quiet origin refs/heads/master:refs/remotes/origin/master") + @updater.in_repo_expect("git pull --ff --no-rebase --quiet origin refs/heads/master:refs/remotes/origin/master") @updater.in_repo_expect("git rev-parse -q --verify HEAD", "3456cdef") @updater.pull!(:silent => true) @updater.in_repo_expect("git rev-parse -q --verify HEAD", "3456cdef") |
