mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 20:38:52 +00:00
9 lines
170 B
Bash
Executable file
9 lines
170 B
Bash
Executable file
#!/bin/sh
|
|
# set permissions required for installation
|
|
|
|
dir=$(dirname $0)
|
|
|
|
for file in cache files store config.php images/avatars/upload
|
|
do
|
|
chmod a+w $dir/../$file
|
|
done
|