codegears 0.0.14.pre → 0.0.15.pre
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/cg/command/app.rb +1 -1
- data/lib/cg/version.rb +1 -1
- metadata +1 -1
data/lib/cg/command/app.rb
CHANGED
@@ -23,7 +23,7 @@ module Command
|
|
23
23
|
end
|
24
24
|
|
25
25
|
def self.status(id = "")
|
26
|
-
puts "Application ID can't be blank".red and return
|
26
|
+
puts "Application ID can't be blank".red and return unless id.present?
|
27
27
|
response = CG::API.show_app_request(id)
|
28
28
|
if response["success"] == false
|
29
29
|
puts "Application not found".red
|
data/lib/cg/version.rb
CHANGED