You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/10/21 16:21:22 UTC

[whimsy] branch master updated: Fix alignment

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new fd6ec8c  Fix alignment
fd6ec8c is described below

commit fd6ec8c9b5fdeed02af330725d1b201ec5afb2c9
Author: Sebb <se...@apache.org>
AuthorDate: Wed Oct 21 17:21:14 2020 +0100

    Fix alignment
---
 lib/whimsy/asf/bundler.rb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/whimsy/asf/bundler.rb b/lib/whimsy/asf/bundler.rb
index 3e6c89f..d677015 100644
--- a/lib/whimsy/asf/bundler.rb
+++ b/lib/whimsy/asf/bundler.rb
@@ -14,9 +14,9 @@ module Bundler
 
       path = nil
       libs.each do |lib|
-         if File.exist?("#{lib}/#{pname}")
-           path = lib
-         end
+        if File.exist?("#{lib}/#{pname}")
+          path = lib
+        end
       end
 
       if path