Index: samples/build_dart/build.dart |
diff --git a/samples/build_dart/build.dart b/samples/build_dart/build.dart |
index 0fdc674ca41eee08dba5806e8e9120a329de9f25..07817b5dfdaf0dc0759468c768cdfdd2cce8a958 100644 |
--- a/samples/build_dart/build.dart |
+++ b/samples/build_dart/build.dart |
@@ -86,7 +86,7 @@ void handleFullBuild() { |
Directory.current.list(recursive: true).listen((entity) { |
if (entity is File) { |
- files.add((entity as File).fullPathSync()); |
+ files.add((entity as File).resolveSymbolicLinksSync()); |
} |
}, |
onDone: () => handleChangedFiles(files)); |