fix no-script default value

This commit is contained in:
Pierre Tachoire
2025-08-08 14:30:41 +02:00
parent fbd40a6514
commit ea1bca05c7

View File

@@ -442,7 +442,7 @@ fn parseFetchArgs(
args: *std.process.ArgIterator,
) !Command.Fetch {
var dump: bool = false;
var noscript: bool = true;
var noscript: bool = false;
var url: ?[]const u8 = null;
var common: Command.Common = .{};