From b4537bf0766f07a8e1bc91cc93e59023ba9341ba Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Thu, 3 Mar 2016 14:43:34 +0000 Subject: Remove redundant `|| false` --- lib/gitlab_projects.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/gitlab_projects.rb') diff --git a/lib/gitlab_projects.rb b/lib/gitlab_projects.rb index 4f26d45..82a16fc 100644 --- a/lib/gitlab_projects.rb +++ b/lib/gitlab_projects.rb @@ -137,7 +137,7 @@ class GitlabProjects timeout = (ARGV.shift || 120).to_i # fetch with --force ? - forced = (ARGV.shift == '--force' || false) + forced = (ARGV.shift == '--force') $logger.info "Fetching remote #{@name} for project #{@project_name}." cmd = %W(git --git-dir=#{full_path} fetch #{@name} --tags) -- cgit v1.2.1