commit dde34d272a1221a1a62c5a935fa29434e12b236c parent cef421108392989869c4e3c047fedeea1c2702a9 Author: Florian Dold <florian@dold.me> Date: Thu, 20 Aug 2026 19:41:38 +0200 use /dev/null, not /tmp/null Diffstat:
| M | src/backenddb/sql-schema/preprocess-sql.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backenddb/sql-schema/preprocess-sql.sh b/src/backenddb/sql-schema/preprocess-sql.sh @@ -47,4 +47,4 @@ done echo "--" # Pre-process with cpp and remove SQL comments and empty lines -gcc -I $(dirname $1) -E -P -undef - < $1 2>/tmp/null | sed -e "s/--.*//" | awk 'NF' +gcc -I $(dirname $1) -E -P -undef - < $1 2>/dev/null | sed -e "s/--.*//" | awk 'NF'