Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit a88381b

Browse files
committed
⌨️ redownload-electron-bins.js: Fix typo
Incorrect capitalization caused this line to reference a non-existent/undefined variable.
1 parent ee1502b commit a88381b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/redownload-electron-bins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (typeof(downloadMksnapshotPath) !== 'undefined') {
1313
const fs = require('fs');
1414

1515
const atomRepoPath = path.join('..', '..', '..', '..', 'atom', 'package.json');
16-
const electronVersion = fs.existsSync(atomRepoPath) ? require(atomrepoPath).electronVersion : '6.1.12'
16+
const electronVersion = fs.existsSync(atomRepoPath) ? require(atomRepoPath).electronVersion : '6.1.12'
1717
// TODO: Keep the above "electronVersion" in sync with "electronVersion" from Atom's package.json
1818

1919
if (process.env.ELECTRON_CUSTOM_VERSION !== electronVersion) {

0 commit comments

Comments
 (0)