lib/unwrappr/git_command_runner.rb in unwrappr-0.3.4 vs lib/unwrappr/git_command_runner.rb in unwrappr-0.3.5
- old
+ new
@@ -49,10 +49,10 @@
def git_dir?
git_wrap { !current_branch_name.empty? }
end
def branch_created?
- timestamp = Time.now.strftime('%Y%d%m-%H%M').freeze
+ timestamp = Time.now.strftime('%Y%m%d-%H%M').freeze
git_wrap do
git.checkout('origin/master')
git.branch("auto_bundle_update_#{timestamp}").checkout
end
end