Skip to content

Commit

Permalink
Merge pull request #351 from jpnurmi/shell
Browse files Browse the repository at this point in the history
fix: use bash instead of $SHELL
  • Loading branch information
kenvandine committed Jul 27, 2023
2 parents e00a70d + e77c8d0 commit a618368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/launcher/feature_model.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class FeatureModel extends SafeChangeNotifier {
..._image.properties,
'user.workshops.features': _features.map((f) => f.name).join(','),
'user.workshops.name': user ?? 'root',
'user.workshops.shell': Platform.environment['SHELL'] ?? '',
'user.workshops.shell': '/bin/bash',
'user.workshops.home': home ?? '/root',
'user.workshops.gpu': 'physical',
'user.workshops.x11': Platform.environment['DISPLAY'] ?? ':0',
Expand Down

0 comments on commit a618368

Please sign in to comment.