From abad3e8873202a8796891dd6b9f6e588ba0f631f Mon Sep 17 00:00:00 2001 From: Muhammad Assad Ullah Date: Mon, 13 Jul 2026 23:57:38 +0500 Subject: [PATCH] fix: use p.join for Windows path compatibility (#250) --- dartdoc_test/lib/src/resource.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dartdoc_test/lib/src/resource.dart b/dartdoc_test/lib/src/resource.dart index f3034d7a..abfb2425 100644 --- a/dartdoc_test/lib/src/resource.dart +++ b/dartdoc_test/lib/src/resource.dart @@ -24,7 +24,7 @@ import 'package:source_span/source_span.dart'; import 'dartdoc_test.dart'; import 'model.dart'; -const _testPath = '.dart_tool/dartdoc_test'; +final _testPath = p.join('.dart_tool', 'dartdoc_test'); final _currentDir = Directory.current;