Add script to CHMOD every file in the repository
- Added "chmod_all.sh" and chmod-ed everything
0
minetestforfun_game/mods/boats/models/boat.obj
Normal file → Executable file
0
minetestforfun_game/mods/bucket/textures/bucket_river_water.png
Normal file → Executable file
Before Width: | Height: | Size: 316 B After Width: | Height: | Size: 316 B |
0
minetestforfun_game/mods/default/textures/default_river_water.png
Normal file → Executable file
Before Width: | Height: | Size: 716 B After Width: | Height: | Size: 716 B |
0
minetestforfun_game/mods/default/textures/default_river_water_flowing_animated.png
Normal file → Executable file
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
0
minetestforfun_game/mods/default/textures/default_river_water_source_animated.png
Normal file → Executable file
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
0
minetestforfun_game/mods/xpanes/textures/xpanes_bar.png
Normal file → Executable file
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
0
mods/death_messages/sounds/death_messages_player_2.ogg
Normal file → Executable file
14
other_things/scripts/chmod_all.sh
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/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
|