exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 415e069d31c46d320d94e7719404bb28459bef1b
parent d6f6a2af491eb094849d350ac6b38a00fabea5ac
Author: Florian Dold <florian@dold.me>
Date:   Tue, 12 May 2026 17:21:59 +0200

fix bootstrap

Diffstat:
Mbootstrap | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/bootstrap b/bootstrap @@ -26,19 +26,19 @@ existence() command -v "$1" >/dev/null 2>&1 } -# Freeze SQL files that must no longer be edited. +# Freeze non-generated SQL files that must no longer be edited. for n in 0001 0002 0003 0004 0005 0006 0007 0008 0009 0010 do - chmod -w src/exchangedb/sql-schema/exchange-$n.sql* - chmod -w src/exchangedb/sql-schema/$n-*.sql &> /dev/null || true + chmod -w src/exchangedb/sql-schema/exchange-$n.sql* &>/dev/null || true + chmod -w src/exchangedb/sql-schema/$n-*.sql &>/dev/null || true done for n in 0001 do - chmod -w src/exchangedb/sql-schema/auditor-triggers-$n.sql* + chmod -w src/exchangedb/sql-schema/auditor-triggers-$n.sql* &>/dev/null || true done for n in 0001 0002 do - chmod -w src/auditordb/auditor-$n.sql* + chmod -w src/auditordb/auditor-$n.sql* &>/dev/null || true chmod -w src/auditordb/$n-*.sql &> /dev/null || true done