We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b59a4e3 commit f728314Copy full SHA for f728314
scripts/compile_svgs.dart
@@ -1,3 +1,4 @@
1
+// Script needs print for CLI progress/output
2
// ignore_for_file: avoid_print
3
4
/// Compiles all SVG assets to .vec format for vector_graphics package.
@@ -97,7 +98,7 @@ Future<bool> _compileSvg(
97
98
print('✗ $fileName - Error: $error');
99
return false;
100
}
- } catch (e) {
101
+ } on Exception catch (e) {
102
print('✗ $fileName - Error: $e');
103
104
0 commit comments