Skip to content

Commit

Permalink
🐛 Fix wrong nightly/release indicator in the starting screen
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmoMyzrailGorynych committed Jun 15, 2024
1 parent 3d68bf8 commit 42d64e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riotTags/project-selector.tag
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 42d64e6

Please sign in to comment.