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 2020/06/30 22:38:20 UTC

[whimsy] branch master updated: Fix logic

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 ae441f8  Fix logic
ae441f8 is described below

commit ae441f86b3d576b5b891e651215b793a5d3ff0c0
Author: Sebb <se...@apache.org>
AuthorDate: Tue Jun 30 23:38:12 2020 +0100

    Fix logic
---
 config/setupmymac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/config/setupmymac b/config/setupmymac
index 1f6f420..f7a5928 100755
--- a/config/setupmymac
+++ b/config/setupmymac
@@ -212,7 +212,8 @@ if not $root and option != :docker
   # Prompt for xcode installation
   `git --version` unless $dry_run
 
-  unless system 'svn --help > /dev/null 2>&1' or `which svnmucc`.empty?
+  # if not (svn installed and svnmucc is on path)
+  unless system 'svn --help > /dev/null 2>&1' and not `which svnmucc`.empty?
     brew 'install', 'subversion'
   end
 end