Skip to content

Commit

Permalink
💚 ++
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexV525 committed Nov 4, 2023
1 parent 841475b commit ae70a00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/melos_bootstrap_ignores.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ void main() async {
.whereType<String>()
.join(',');
print(satisfiedPackages);
Process.runSync('export', ['MELOS_PACAKGES=$satisfiedPackages']);
Process.runSync(
'export',
['MELOS_PACAKGES=$satisfiedPackages'],
runInShell: true,
);
print(Platform.environment['MELOS_PACKAGES']);
}

Expand Down

0 comments on commit ae70a00

Please sign in to comment.