From 45d935eda36883a4a2ce9864441f7b675a84017b Mon Sep 17 00:00:00 2001 From: Giovanni Merlino Date: Fri, 27 Jan 2023 22:34:27 +0100 Subject: [PATCH] Fix missing separator for Pkgin (pkgsrc) (#307) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix missing separator for Pkgin (pkgsrc) * Fix whitespace (giving issues with cargo fmt?) --------- Co-authored-by: Thomas Schönauer <37108907+DottoDev@users.noreply.github.com> --- src/steps/os/unix.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/steps/os/unix.rs b/src/steps/os/unix.rs index 6d30ac92..b96631f0 100644 --- a/src/steps/os/unix.rs +++ b/src/steps/os/unix.rs @@ -152,6 +152,8 @@ pub fn run_oh_my_fish(ctx: &ExecutionContext) -> Result<()> { pub fn run_pkgin(ctx: &ExecutionContext) -> Result<()> { let pkgin = require("pkgin")?; + print_separator("Pkgin"); + let mut command = ctx.run_type().execute(ctx.sudo().as_ref().unwrap()); command.arg(&pkgin).arg("update"); if ctx.config().yes(Step::Pkgin) {