From 9043c8fe69c821a8c5c50c0da5fbf8fe564f401f Mon Sep 17 00:00:00 2001 From: Igor Ramazanov Date: Tue, 11 Mar 2025 18:20:49 +0000 Subject: [PATCH] fix: version error message --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index e59bb8a..5b36858 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -13,7 +13,7 @@ if (prefix.endsWith('/')) { const version = fs.readFileSync("version", "utf8"); if (!version) { - throw new Error('Unable to execute git describe'); + throw new Error('Unable to read ./version'); } export default defineConfig({