commit 78c706aecf318cc5a28797b304974f3c7c82525c
parent 9cc49922b216302b09dc7197de0fb94e88f7ef75
Author: Florian Dold <florian@dold.me>
Date: Tue, 2 Apr 2024 13:02:18 +0200
-fix octal for TypeScript as well
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu-taler-error-codes/Makefile b/gnu-taler-error-codes/Makefile
@@ -53,7 +53,7 @@ taler_error_codes.ts.tmp: combined.tmp ts.template
../format.sh ts.template < combined.tmp > $@
taler_error_codes.ts: ts.header taler_error_codes.ts.tmp ts.footer
- cat $^ > $@
+ cat $^ | sed -e "s/= 0000/= 0/" -e "s/= 000/= /" -e "s/= 00/= /" > $@
taler_error_codes.kt.tmp: combined.tmp kt.template
../format.sh kt.template < combined.tmp > $@