diff options
Diffstat (limited to 'src/command/publish.rs')
| -rw-r--r-- | src/command/publish.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/publish.rs b/src/command/publish.rs index 4b174de..e203f62 100644 --- a/src/command/publish.rs +++ b/src/command/publish.rs @@ -23,8 +23,8 @@ impl super::Command for Publish { configuration: &Configuration, _: &str, ) -> Result<()> { - let input = input - .ok_or_else(|| Error::other("You must provide a location to publish the blog"))?; + let input = + input.ok_or_else(|| Error::other("You must provide a location to publish the blog"))?; Command::new(COMMAND) .arg("--version") |