mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-09 12:00:17 +01:00
15 lines
210 B
Bash
15 lines
210 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Script to chmod all files in the repository at 755
|
||
|
# Script ßý LeMagnesium
|
||
|
#
|
||
|
|
||
|
# Go to repo root
|
||
|
mydir="`dirname "$0"`"
|
||
|
test -d "$mydir" && cd "$mydir/../../"
|
||
|
|
||
|
# CHMOD TIME!
|
||
|
chmod -R 755 .
|
||
|
|
||
|
#EOF
|