mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
bd86d9d8f4
- Removed hud (incompatible) - Copied all hunger.lua's values in new hunger.lua (hbhunger) - Added hbhunger, hbarmor - Updated sprint mod
16 lines
259 B
Bash
Executable File
16 lines
259 B
Bash
Executable File
#!/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 .
|
|
echo "All files have been chmod-ed to mode 755."
|
|
|
|
#EOF
|