pkg download command and patches

This commit is contained in:
2026-09-10 16:59:11 +03:00
parent c6dcbc1ca5
commit 60cf4a2523
110 changed files with 1588 additions and 332 deletions

View File

@ -35,7 +35,7 @@ fn extract_block(file_path: &Path, start_marker: &str, end_marker: &str) -> io::
if line.trim() == start_marker { block_started = true; continue }
if block_started {
if line.trim() == end_marker { break }
result.push(line.trim().to_string())
result.push(line.to_string())
}
}