From d294e6ac6f285e01dd9691a482b477bae44f661a Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 29 Oct 2022 22:16:46 -0700 Subject: src/emacs skip action: fix some operator precedence --- lib-src/mr/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib-src/mr/config b/lib-src/mr/config index 3bfe55f7..94baf8a8 100644 --- a/lib-src/mr/config +++ b/lib-src/mr/config @@ -555,8 +555,8 @@ fixups = # update from upstream master deliberately, not as part of automated updates. pull = git checkout "$hostname" \ && git pull --rebase --autostash origin master -skip = lazy || [ "$1" = pull ] \ - && [ -z "$(git for-each-ref '[r]efs/heads/'$hostname)" ] +skip = lazy || ( [ "$1" = pull ] \ + && [ -z "$(git for-each-ref '[r]efs/heads/'$hostname)" ] ) # myrepos git_status assumes a separate registration for each worktree. # Empty update action to prevent fetching from remotes over and over again. -- cgit v1.2.3