gitjour 2.0.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/gitjour +1 -1
- data/lib/gitjour/version.rb +1 -1
- metadata +1 -1
data/bin/gitjour
CHANGED
@@ -32,7 +32,7 @@ case ARGV.shift
|
|
32
32
|
puts "#{service.name} on #{service.host}: gitjour clone #{service.name}"
|
33
33
|
end
|
34
34
|
when "clone"
|
35
|
-
name_of_share = ARGV
|
35
|
+
name_of_share = ARGV.shift || fail("You have to pass in a name")
|
36
36
|
host = service_list(name_of_share).detect{|service| service.name == name_of_share}.host
|
37
37
|
system("git clone git://#{host}/ #{name_of_share}")
|
38
38
|
when "serve"
|
data/lib/gitjour/version.rb
CHANGED