Files
openttd-cmclient/rebase-check.sh
2025-12-08 23:20:17 +05:00

13 lines
232 B
Bash
Executable File

#!/bin/sh
msg=$(git log -1 --pretty=%s)
case "$msg" in
"Update: Translations from eints"*)
echo "⏩ Skipping build for translation commit"
;;
*)
cd build && ninja -j 20 openttd
;;
esac
# cd build && make -j 10