mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-07-07 06:51:47 +08:00
10 lines
362 B
Bash
10 lines
362 B
Bash
#!/bin/bash
|
|
|
|
# 检查是否有 `wxColour(0x......)` 格式的代码
|
|
if git diff --cached --name-only | xargs grep -nE 'wxColour\(0x[0-9A-Fa-f]{6}\)'; then
|
|
echo "❌ 错误:禁止直接使用 wxColour(0x......),请改用 wxColour(\"#......\") 或 wxColour(r, g, b) 格式。"
|
|
echo "违规代码位置见上方输出。"
|
|
exit 1 # 阻止提交
|
|
fi
|
|
|