Skip to content

Commit 9408737

Browse files
committed
fix(setup): fix setup when linux-user is passed as a stage
1 parent 9ddb0f9 commit 9408737

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/commands/setup.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ class SetupCommand extends Command {
8989
this.ui.log('Operating system is not Linux, skipping Linux setup', 'yellow');
9090
} else {
9191
// we want this to run first so we use unshift rather than push
92-
tasks.unshift(linux);
92+
tasks.unshift({
93+
title: 'Setting up "ghost" system user',
94+
task: linux.bind(this)
95+
});
9396
}
9497
}
9598

0 commit comments

Comments
 (0)