From 4127c83babfb2c6cec9ad2a62ca2d9c6c868b58e Mon Sep 17 00:00:00 2001 From: Aoran Zeng Date: Mon, 21 Jul 2025 01:05:16 +0800 Subject: [PATCH] Move ignore config to root config --- .gitignore | 10 ++++++++++ tool/rawstr4c/.gitignore | 11 +++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 4b95f64..48737a1 100644 --- a/.gitignore +++ b/.gitignore @@ -82,3 +82,13 @@ chsrc-dbgsym_*.ddeb chsrc_*.build chsrc_*.buildinfo chsrc_*.changes + + + +############################## +# rawstr4c +############################## +.precomp + +tool/rawstr4c/test/fixture/rawstr4c.c +tool/rawstr4c/test/fixture/rawstr4c.h diff --git a/tool/rawstr4c/.gitignore b/tool/rawstr4c/.gitignore index a641754..ceca081 100644 --- a/tool/rawstr4c/.gitignore +++ b/tool/rawstr4c/.gitignore @@ -1,4 +1,7 @@ -lib/.precomp - -rawstr4c.c -rawstr4c.h +# 2025-07-21 +# +# 这个放在内部的 .gitignore 文件也是能起作用的 +# +# 但是 Raku 很容易不小心生成 .precomp 目录 +# +# 所以我们还是把所有 ignore 配置放在项目根目录下吧