From 51564ec4944fea05b84d465123d3927081232a31 Mon Sep 17 00:00:00 2001 From: Sathis Kumar Date: Tue, 22 Jun 2021 20:07:15 +0530 Subject: [PATCH] Remove lint warning --- src/cmd/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/init.rs b/src/cmd/init.rs index 62ce971c..f410731e 100644 --- a/src/cmd/init.rs +++ b/src/cmd/init.rs @@ -29,7 +29,7 @@ pub fn execute(args: &ArgMatches) -> Result<()> { // If flag `--theme` is present, copy theme to src if args.is_present("theme-only") { - builder.copy_across_theme(); + builder.copy_across_theme()?; return Ok(()); } else if args.is_present("theme") { let theme_dir = book_dir.join("theme");