From e7d09c1aecf545a1b7997a7e5ca6d64beb618fcf Mon Sep 17 00:00:00 2001 From: Koen Van Looveren Date: Mon, 27 Nov 2023 21:32:17 +0100 Subject: [PATCH] fix: prerun script --- tool/script_pre_run.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/script_pre_run.dart b/tool/script_pre_run.dart index 4bceb21..acae303 100644 --- a/tool/script_pre_run.dart +++ b/tool/script_pre_run.dart @@ -5,6 +5,6 @@ import 'package:path/path.dart'; void main(List args) { final fileName = 'example_config'; final basePath = join('example', 'bin'); - final file = File(join(fileName, basePath)); + final file = File(join(basePath, fileName)); file.copySync(join(basePath, '$fileName.dart')); }