lib/tasks/push.rb in dev-2.0.268 vs lib/tasks/push.rb in dev-2.0.269
- old
+ new
@@ -4,10 +4,10 @@
task :push do Tasks.execute_task :push;end
class Push < Array
def update
if(File.exists?('.git') && `git config --list`.include?('user.name=') && `git branch`.include?('* master'))
- self << 'git push'
- self << 'git push --tags'
+ add_quiet 'git push'
+ add_quiet 'git push --tags'
end
end
end
\ No newline at end of file