Skip to content

Commit

Permalink
fix(setup): re-add ability for linux-user step to be skipped with flag
Browse files Browse the repository at this point in the history
closes #385
  • Loading branch information
acburdine committed Jul 29, 2017
1 parent 7abe68b commit 605dd02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class SetupCommand extends Command {
}
}];

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

0 comments on commit 605dd02

Please sign in to comment.