Skip to content

Commit

Permalink
Fix branchSelection output in install.js
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasvvv committed Aug 22, 2020
1 parent b8dfb0f commit 5249c1c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions install.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,13 @@ async function startup() {
windowsURLS.forEach(res => {
res.url = res.url.replace('%_%', branchSelection);
});
console.log('You have selected the release branch.');
} else {
console.log('Linux');
linuxURLS.forEach(res => {
res.url = res.url.replace('%_%', branchSelection);
});
console.log('You have selected the release branch.');
}
console.log(`You have selected the ${branchSelection} branch.`);

if (platform === 'windows') {
await downloadAll(windowsURLS);
Expand Down

0 comments on commit 5249c1c

Please sign in to comment.