From bb00d6a9a38b1b4b43915f609d26e2ab7cca8468 Mon Sep 17 00:00:00 2001 From: Rachel Date: Thu, 22 May 2025 20:02:25 -0700 Subject: [PATCH] fix!: Change the extension of generated .naix files to .naix.h --- .version | 2 +- cli/src/narc_create.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.version b/.version index 6e8bf73..0d91a54 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.1.0 +0.3.0 diff --git a/cli/src/narc_create.c b/cli/src/narc_create.c index 7379108..5e3d148 100644 --- a/cli/src/narc_create.c +++ b/cli/src/narc_create.c @@ -162,7 +162,7 @@ static int pack(struct options *opts) struct vfs_pack_ctx *ctx = NULL; struct strbuild *index = NULL; struct strvec *to_pack = NULL; - char *naix = strcpy_fext(opts->output, "naix"); + char *naix = strcpy_fext(opts->output, "naix.h"); dir = opendir(opts->input); if (dir == NULL) {