From 3922e4a935cc662397d024821706b5f408994875 Mon Sep 17 00:00:00 2001 From: Christopher Durham Date: Sun, 11 Nov 2018 18:41:37 -0500 Subject: [PATCH] fix typo #43 --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index fd3135cd..ff2756d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -208,7 +208,7 @@ fn ghp_upload(branch: &str, origin: &str, args: &Args) -> Result<()> { let dir = entry?; // Clean the directory, as we'll be copying new files // Ignore index.html as requested for redirect page - if args.clobber_index || dir.file_name() != OsString::from("index.hmtl") { + if args.clobber_index || dir.file_name() != OsString::from("index.html") { let path = dir.path(); fs::remove_dir_all(&path).ok(); fs::remove_file(path).ok();