Merge pull request #1563 from tsmacdonald/master

Use correct time in log message for Github deploy
This commit is contained in:
Parker Moore 2014-05-17 23:33:19 -04:00
commit ff1b10d0bc
1 changed files with 1 additions and 1 deletions

View File

@ -261,8 +261,8 @@ multitask :push do
cp_r "#{public_dir}/.", deploy_dir
cd "#{deploy_dir}" do
system "git add -A"
puts "\n## Committing: Site updated at #{Time.now.utc}"
message = "Site updated at #{Time.now.utc}"
puts "\n## Committing: #{message}"
system "git commit -m \"#{message}\""
puts "\n## Pushing generated #{deploy_dir} website"
system "git push origin #{deploy_branch}"