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

Commit e8fbe34

Browse files
committed
👕
1 parent 7def61b commit e8fbe34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/helpers.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@ export function getPackageRoot() {
3131
}
3232

3333
function getAtomAppName() {
34-
const match = atom.getVersion().match(/beta|nightly/)
34+
const match = atom.getVersion().match(/beta|nightly/);
3535
if (match) {
36-
return `Atom ${match[0].charAt(0).toUpperCase() + match[0].slice(1)} Helper`
36+
return `Atom ${match[0].charAt(0).toUpperCase() + match[0].slice(1)} Helper`;
3737
}
3838

39-
return 'Atom Helper'
39+
return 'Atom Helper';
4040
}
4141

4242
export function getAtomHelperPath() {
4343
if (process.platform === 'darwin') {
44-
const appName = getAtomAppName()
44+
const appName = getAtomAppName();
4545
return path.resolve(process.resourcesPath, '..', 'Frameworks',
4646
`${appName}.app`, 'Contents', 'MacOS', appName);
4747
} else {

0 commit comments

Comments
 (0)