From 16a40cc9e079a6dcc93dc40fd17bfe25d4bae253 Mon Sep 17 00:00:00 2001 From: geographika Date: Wed, 19 Jun 2024 17:14:07 +0200 Subject: [PATCH] fix: rename the client application to geostyler from geostyler-cli --- package-binaries.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-binaries.js b/package-binaries.js index 5b40f19..77ecdae 100644 --- a/package-binaries.js +++ b/package-binaries.js @@ -25,7 +25,7 @@ async function processFiles() { try { for (const fileName of fileNames) { const filePath = folderPath + fileName; - const renamedFilePath = folderPath + fileName.replace('-win', '').replace('-macos', '').replace('-linux', ''); + const renamedFilePath = folderPath + fileName.replace('-cli-win', '').replace('-cli-macos', '').replace('-cli-linux', ''); // Rename the file await renameFile(filePath, renamedFilePath);