mirror of
https://ghproxy.net/https://github.com/CaptainCore/captaincore.git
synced 2026-08-04 14:10:32 +08:00
9 lines
No EOL
206 B
Bash
9 lines
No EOL
206 B
Bash
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Reset file and folder permissions to defaults
|
|
#
|
|
|
|
echo "Resetting file and folder permissions to defaults"
|
|
find . -type d -exec chmod 755 {} \;
|
|
find . -type f -exec chmod 644 {} \; |