1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-14 00:30:21 +02:00
server-nalc/other_things/scripts/chmod_all.sh
LeMagnesium bd86d9d8f4 Added all hudbars by @Wuzzy2
- Removed hud (incompatible)
 - Copied all hunger.lua's values in new hunger.lua (hbhunger)
 - Added hbhunger, hbarmor
 - Updated sprint mod
2015-06-16 19:22:40 +02:00

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