Skip to content

Commit

Permalink
Update windows_evb_config_generator.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
sun-jiao committed Mar 5, 2024
1 parent 42048b4 commit 9cb79ff
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dev/windows_evb_config_generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ void main() {
File(r'C:\Windows\System32\vcruntime140.dll'),
File(r'C:\Windows\System32\vcruntime140_1.dll'),
]) {
e.copySync(windowsBuildDir.path);
try {
e.copySync(windowsBuildDir.path);
} catch (e, s) {
print(e);
print(s);
}
}

final entities = windowsBuildDir.listSync();
Expand Down

0 comments on commit 9cb79ff

Please sign in to comment.