14 lines
178 B
Bash
14 lines
178 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
chgrp -R www-data static_gen/
|
||
|
|
||
|
fix_dirs()
|
||
|
{
|
||
|
local IFS=$'\n'
|
||
|
for line in `find static_gen/ -type d`; do
|
||
|
chmod g+s ${line}
|
||
|
done
|
||
|
}
|
||
|
|
||
|
fix_dirs
|