Skip to content

Commit c5e400c

Browse files
a-sivaCommit Queue
authored andcommitted
[vm-service] - Fix location in which the vm-service server looks for the dds snapshot.
The location of the dds snapshot was changed when the g3 roll failed and at that time this code was not changed accordingly. TEST=ci and manual testing Change-Id: I92b43f68b082d7c2c7a7e56f53ccb987cbfb72e7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/414382 Reviewed-by: Alexander Aprelev <[email protected]> Commit-Queue: Siva Annamalai <[email protected]>
1 parent 3514767 commit c5e400c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

sdk/lib/_internal/vm/bin/vmservice_server.dart

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,7 @@ class _DebuggingSession {
165165
'dds_aot.dart.snapshot',
166166
].join(Platform.pathSeparator);
167167
if (FileSystemEntity.typeSync(script) == FileSystemEntityType.notFound) {
168-
script = [
169-
dartDir,
170-
'gen',
171-
'dds_aot.dart.snapshot',
172-
].join(Platform.pathSeparator);
168+
script = [dartDir, 'dds_aot.dart.snapshot'].join(Platform.pathSeparator);
173169
if (FileSystemEntity.typeSync(script) == FileSystemEntityType.notFound) {
174170
executable = [dartDir, dart].join(Platform.pathSeparator);
175171
script = 'development-service';

0 commit comments

Comments
 (0)