Skip to content

Commit

Permalink
fix: prerun script
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Nov 27, 2023
1 parent d9f1233 commit e7d09c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/script_pre_run.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import 'package:path/path.dart';
void main(List<String> 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'));
}

0 comments on commit e7d09c1

Please sign in to comment.