feat(assets): brought changes from main

This commit is contained in:
2025-03-20 07:31:34 -04:00
parent b2d9429312
commit 6cda7b1be9
4 changed files with 29 additions and 2 deletions

10
assets/const/format.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
if [ "$#" -ne 2 ]; then
echo "Usage: $0 <input_file> <output_file>"
exit 1
fi
input_file="$1"
output_file="$2"
printf 'const char embeddedConstants[] = R"(' > "$output_file"
cat "$input_file" >> "$output_file"
printf ')";\n' >> "$output_file"