mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
ensure bins are marked as executable (#108)
This commit is contained in:
parent
f97a43e3fc
commit
47e5534546
1 changed files with 8 additions and 0 deletions
|
|
@ -98,6 +98,14 @@ else
|
|||
fi
|
||||
fi
|
||||
|
||||
# Ensure bins are marked executable
|
||||
for bin in ./map-extractor ./mmap-extractor ./vmap-extractor; do
|
||||
if [ -f "$bin" ]; then
|
||||
echo "Marking $bin executable"
|
||||
chmod +x "$bin"
|
||||
fi
|
||||
done
|
||||
|
||||
## Special case: Only reextract offmesh tiles
|
||||
if [ "$USE_MMAPS_OFFMESH" = "1" ]
|
||||
then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue