aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2025-11-04 18:24:46 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2025-11-04 18:24:46 -0500
commitb87214ebdb830d6f5f7768d03e517894bc563053 (patch)
tree80031d42c5a2a2e5e18304e57a06d07237e83bf0
parent8deac98db935cbdf5a7f7c37024be485a429233d (diff)
downloadstasis-b87214ebdb830d6f5f7768d03e517894bc563053.tar.gz
CANARY
-rw-r--r--src/cli/stasis_indexer/stasis_indexer_main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cli/stasis_indexer/stasis_indexer_main.c b/src/cli/stasis_indexer/stasis_indexer_main.c
index 6f430c2..e674a5a 100644
--- a/src/cli/stasis_indexer/stasis_indexer_main.c
+++ b/src/cli/stasis_indexer/stasis_indexer_main.c
@@ -29,6 +29,8 @@ int indexer_combine_rootdirs(const char *dest, char **rootdirs, const size_t roo
puts("sprintf 1");
snprintf(cmd, sizeof(cmd), "rsync -ah%s --delete --exclude 'tools/' --exclude 'tmp/' --exclude 'build/' ", globals.verbose ? "v" : "q");
for (size_t i = 0; i < rootdirs_total; i++) {
+ printf("i = %zu (rootdirs_total = %zu)\n", i, rootdirs_total);
+
char srcdir_bare[PATH_MAX] = {0};
char srcdir_with_output[PATH_MAX] = {0};
char *srcdir = srcdir_bare;