This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 15a3d7a No need for git pull; fail on first error
15a3d7a is described below
commit 15a3d7a0ba56953a90a8a6de75ca3114301c3eab
Author: Sebb <[email protected]>
AuthorDate: Sun Dec 1 17:54:15 2019 +0000
No need for git pull; fail on first error
---
Rakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Rakefile b/Rakefile
index 1bdeacc..2123d71 100644
--- a/Rakefile
+++ b/Rakefile
@@ -300,7 +300,7 @@ namespace :docker do
task :update => :build do
Dir.chdir File.join(__dir__, 'docker') do
sh 'docker-compose run --entrypoint ' +
- %('bash -c "rake docker:scaffold; git pull; rake update"') +
+ %('bash -c "rake docker:scaffold && rake update"') +
' web'
end
end