Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Temporarily run Windows tests via GitHub Actions #3875

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make not having HOME set in the environment non-fatal
  • Loading branch information
stuartmorgan committed May 11, 2021
commit b5139bf9a91b600f3cd21949e49df7000b9b83d3
4 changes: 2 additions & 2 deletions script/tool/lib/src/firebase_test_lab_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ class FirebaseTestLabCommand extends PluginCommand {
help: 'The Firebase project name.',
);
argParser.addOption('service-key',
defaultsTo:
p.join(io.Platform.environment['HOME'], 'gcloud-service-key.json'));
defaultsTo: p.join(
io.Platform.environment['HOME'] ?? '/', 'gcloud-service-key.json'));
argParser.addOption('test-run-id',
defaultsTo: Uuid().v4(),
help:
Expand Down