Skip to content

Commit edce827

Browse files
committed
fix(setup): skip ghost user setup if process manager is local
no issue - noticed this when testing #607
1 parent c6b8b40 commit edce827

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/commands/setup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ class SetupCommand extends Command {
111111
}
112112
}];
113113

114-
if (!argv.local && argv['setup-linux-user'] !== false && os.platform() === 'linux') {
114+
if (!argv.local && argv['setup-linux-user'] !== false && os.platform() === 'linux' && argv.process !== 'local') {
115115
initialStages.push({
116116
title: 'Setting up "ghost" system user',
117117
task: linux.bind(this)

0 commit comments

Comments
 (0)