lib/dryrun.rb in dryrun-0.6.3 vs lib/dryrun.rb in dryrun-0.6.4
- old
+ new
@@ -9,11 +9,11 @@
module DryRun
class MainApp
def initialize(arguments)
@url = ['-h', '--help', '-v', '--version'].include?(arguments.first) ? nil : arguments.shift
-
+
# defaults
@app_path = nil
@custom_module = nil
@flavour = ''
@tag = nil
@@ -100,9 +100,9 @@
puts "Using custom module: #{@custom_module.green}" if @custom_module
# clean and install the apk
android_project.install
- puts "\n> If you want to remove the app you just installed, execute:\n#{android_project.get_uninstall_command.red}\n\n"
+ puts "\n> If you want to remove the app you just installed, execute:\n#{android_project.get_uninstall_command.yellow}\n\n"
end
end
end