coming together now.

This commit is contained in:
2025-01-06 14:17:22 -06:00
parent 2fd7a96268
commit 060ecc7aa7
26 changed files with 106 additions and 75 deletions

9
RenderTemplates.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
MUSTACHE_PATH="../vendor/"
for input_file in $(ls -1 contract-inputs/*.md);
do
OUTPUT_FILE_NAME="$(echo $input_file | awk -F '/' '{print $2}')"
$MUSTACHE_PATH $input_file > $OUTPUT_FILE_NAME
done