1
1

Add missing syntax on find command

This commit was SVN r20198.
Этот коммит содержится в:
Ralph Castain 2009-01-05 14:38:34 +00:00
родитель 760e744294
Коммит 7afaa0f0a1

Просмотреть файл

@ -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