blob: 5ae2ff795be9551ac7ae4034a3614d8423adfe9d [file] [log] [blame]
import 'dart:io';
void main(List<String> arguments) => Directory.current
.list(recursive: true)
.where((f) => f.path.endsWith('pubspec_overrides.yaml'))
.forEach((f) => f.deleteSync());