Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 24c3530

Browse files
mit-mitcommit-bot@chromium.org
authored andcommitted
Fix windows extension
TEST=Not applicable, fixing existing test Change-Id: Ie39b7d71fdd1260471f44d98b0f75fe2d5a39153 Bug: dart-lang/sdk#46970 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/211060 Commit-Queue: Michael Thomsen <[email protected]> Reviewed-by: Alexander Markov <[email protected]>
1 parent 6f2e9f5 commit 24c3530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/vm_snapshot_analysis/test/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:test/test.dart';
1010

1111
final dartCompile = () {
1212
final sdkBin = path.dirname(Platform.executable);
13-
final dartCmd = path.join(sdkBin, Platform.isWindows ? 'dart.bat' : 'dart');
13+
final dartCmd = path.join(sdkBin, Platform.isWindows ? 'dart.exe' : 'dart');
1414

1515
if (!File(dartCmd).existsSync()) {
1616
throw 'Failed to locate `dart` in the SDK';

0 commit comments

Comments
 (0)