(path: &str)
| 263 | } |
| 264 | |
| 265 | fn is_remote_zip_file(path: &str) -> bool { |
| 266 | path.starts_with("https://") && path.ends_with(".zip") |
| 267 | } |
| 268 | |
| 269 | fn find_local_zip_file(value: &str) -> Option<PathBuf> { |
| 270 | // ignore error to fallback to other template options. |