lint: fixed ordering from config.js

This commit is contained in:
Gabriel Grubba
2023-05-04 17:47:54 -03:00
parent fb3e6b9c5f
commit 8fdcacff18

View File

@@ -1,5 +1,5 @@
const path = require('path');
const os = require('os');
const path = require('path');
const METEOR_LATEST_VERSION = '2.12';
const sudoUser = process.env.SUDO_USER || '';
@@ -21,7 +21,7 @@ if (isWindows()) {
} else {
if (isRoot()) {
console.info(
'You are running the install script as root, without SUDO. This is not recommended and should be avoided. Continuing.'
'You are running the install script as root, without SUDO. This is not recommended and should be avoided. Continuing.',
);
}
rootPath = os.homedir();