You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2019/07/18 12:33:08 UTC

[whimsy] branch master updated: Show SVN output

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 3339d48  Show SVN output
3339d48 is described below

commit 3339d48eed2004e244659f8c04a727e147238c30
Author: Sebb <se...@apache.org>
AuthorDate: Thu Jul 18 13:33:03 2019 +0100

    Show SVN output
---
 tools/svnupdate.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/svnupdate.rb b/tools/svnupdate.rb
index 1394e97..6a4e379 100644
--- a/tools/svnupdate.rb
+++ b/tools/svnupdate.rb
@@ -25,8 +25,8 @@ def update(dir)
 
     puts "#{Time.now} Updating #{dir}" # Temporary test
     Dir.chdir dir do
-      `svn cleanup`
-      `svn update`
+      puts `svn cleanup`
+      puts `svn update`
     end
   end
 end