Skip to content

Commit

Permalink
Merge pull request #5 from tomasvosylius/patch-1
Browse files Browse the repository at this point in the history
Fix branchSelection output in install.js
  • Loading branch information
Stuyk committed Aug 22, 2020
2 parents b8dfb0f + 5249c1c commit ce941c7
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 ce941c7

Please sign in to comment.