mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-03 16:13:22 +08:00
c5d57c03ee
* Replace protobuf 2.6.1 with 3.21.8 * Update/add protobuf libs * Add CS2 protos * Remove old csgo/dota protos * Add versioned protoc bin * Comment out Valve's `schema` define for now * Use ENetworkDisconnectionReason * Fix-up `offsetof` to avoid errors on some Clang versions
9 lines
147 B
Bash
9 lines
147 B
Bash
#!/bin/bash
|
|
for file in $(find . -type f); do
|
|
if [ "$(head -c 2 $file)" == "#!" ]; then
|
|
chmod u+x $file
|
|
else
|
|
chmod a-x $file
|
|
fi
|
|
done
|