knife-easybake 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/chef/knife/setup.rb +3 -4
- data/lib/knife_easybake/version.rb +1 -1
- metadata +1 -1
data/lib/chef/knife/setup.rb
CHANGED
@@ -46,12 +46,11 @@ class Chef
|
|
46
46
|
|
47
47
|
def run
|
48
48
|
if name_args.length == 0
|
49
|
-
|
50
|
-
|
49
|
+
organization = ask("Enter your organization:")
|
50
|
+
else
|
51
|
+
organization = name_args[0]
|
51
52
|
end
|
52
53
|
|
53
|
-
organization = name_args[0]
|
54
|
-
|
55
54
|
# Get validator key
|
56
55
|
if config[:regen_validator_key]
|
57
56
|
output "Regenerating validation key for #{organization}-validator..."
|