From 42d64e65d8869a9f4ad4d36bb2efe9c9c89b5a30 Mon Sep 17 00:00:00 2001 From: Cosmo Myzrail Gorynych Date: Sat, 15 Jun 2024 03:34:31 +0300 Subject: [PATCH] :bug: Fix wrong nightly/release indicator in the starting screen --- src/riotTags/project-selector.tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/riotTags/project-selector.tag b/src/riotTags/project-selector.tag index d520b346d..b49af51ce 100644 --- a/src/riotTags/project-selector.tag +++ b/src/riotTags/project-selector.tag @@ -558,7 +558,7 @@ project-selector const packaged = path.basename(process.execPath, path.extname(process.execPath)) !== 'nw'; if (packaged) { this.packageType = 'released'; - fs.pathExists('./data/nigthly') + fs.pathExists('./package.nw/data/nigthly') .then(exists => { if (exists) { this.packageType = 'nightly';