dont ever use cstring again

This commit is contained in:
2026-02-15 12:42:55 -05:00
parent c4da5ecc14
commit 42db451349
4 changed files with 1067 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash
# Output file
OUTPUT_FILE="project_context.txt"
OUTPUT_FILE="jormundb-odin-project_context.txt"
# Directories to exclude
EXCLUDE_DIRS=("build" "data" ".git")
@@ -10,7 +10,7 @@ EXCLUDE_DIRS=("build" "data" ".git")
INCLUDE_EXTENSIONS=("odin" "Makefile" "md" "json" "h" "cc")
# Special files to include (without extension)
INCLUDE_FILES=()
INCLUDE_FILES=("Makefile")
# Clear the output file
> "$OUTPUT_FILE"