Make sure we get out of the pages directory after updating.

This commit is contained in:
Nathan Weizenbaum 2009-10-08 22:32:56 -07:00
parent b18a9ac6c9
commit 012355103e
1 changed files with 10 additions and 9 deletions

View File

@ -248,17 +248,18 @@ task :pages do
sh %{git checkout #{proj}-pages}
sh %{git reset --hard origin/#{proj}-pages}
Dir.chdir("/var/www/#{proj}-pages")
sh %{git fetch origin}
Dir.chdir("/var/www/#{proj}-pages") do
sh %{git fetch origin}
sh %{git checkout stable}
sh %{git reset --hard origin/stable}
sh %{git checkout stable}
sh %{git reset --hard origin/stable}
sh %{git checkout #{proj}-pages}
sh %{git reset --hard origin/#{proj}-pages}
sh %{rake build --trace}
sh %{mkdir -p tmp}
sh %{touch tmp/restart.txt}
sh %{git checkout #{proj}-pages}
sh %{git reset --hard origin/#{proj}-pages}
sh %{rake build --trace}
sh %{mkdir -p tmp}
sh %{touch tmp/restart.txt}
end
end
end