From b319397c57c5403886193d9d1538d779e6f5ef11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Mon, 23 Aug 2010 19:31:04 +0200 Subject: [PATCH] avoid warning about uninitialized variable @skip --- lib/hub/args.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/hub/args.rb b/lib/hub/args.rb index bba2154e..97513662 100644 --- a/lib/hub/args.rb +++ b/lib/hub/args.rb @@ -12,6 +12,7 @@ module Hub super @executable = ENV["GIT"] || "git" @after = nil + @skip = false end # With no arguments, returns the `after` callback. -- GitLab