From 7afaa0f0a107921c4e58129873547eebb0afdf73 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 5 Jan 2009 14:38:34 +0000 Subject: [PATCH] Add missing syntax on find command This commit was SVN r20198. --- contrib/hg/set-hg-share-perms.csh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/hg/set-hg-share-perms.csh b/contrib/hg/set-hg-share-perms.csh index 86cb01c155..c6d08d7ba7 100755 --- a/contrib/hg/set-hg-share-perms.csh +++ b/contrib/hg/set-hg-share-perms.csh @@ -12,7 +12,7 @@ echo Setting all files to be group writable.... chmod -R g+w . echo Setting group "s" perms on directories... -find . -type d -exec chmod g+ws {} +find . -type d -exec chmod g+ws {} \; echo done exit 0