Skip to content

Commit f573178

Browse files
committed
Warn about deleting rule files
1 parent e59582e commit f573178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ pub fn main() !void {
158158
popup_slice = try std.fmt.bufPrint(&popup_buf, "Error: Invalid output path", .{});
159159
},
160160
error.FileNotFound => {
161-
popup_slice = try std.fmt.bufPrint(&popup_buf, "Error: Please enter valid input and output paths", .{});
161+
popup_slice = try std.fmt.bufPrint(&popup_buf, "Error: Please enter valid input and output paths, and make sure you didn't delete any rule files", .{});
162162
},
163163
error.UnexpectedToken => {
164164
popup_slice = try std.fmt.bufPrint(&popup_buf, "Error: Unexpected token '{s}' in file {s} on line {} and column {}", .{

0 commit comments

Comments
 (0)