From 7b9f635d3661c3f48c309243305a814e7d02e3b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Sat, 21 Oct 2023 11:50:59 +1300 Subject: [PATCH] Fmt --- cargo-pgrx/src/command/init.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cargo-pgrx/src/command/init.rs b/cargo-pgrx/src/command/init.rs index ffc05ad25d..ffeef2913b 100644 --- a/cargo-pgrx/src/command/init.rs +++ b/cargo-pgrx/src/command/init.rs @@ -264,7 +264,12 @@ fn download_postgres( make_install_postgres(pg_config, &pgdir, init) // returns a new PgConfig object } -fn untar(bytes: &[u8], pgrxdir: &PathBuf, pg_config: &PgConfig, init: &Init) -> eyre::Result { +fn untar( + bytes: &[u8], + pgrxdir: &PathBuf, + pg_config: &PgConfig, + init: &Init, +) -> eyre::Result { let _token = init.jobserver.get().unwrap().acquire().unwrap(); let mut pgdir = pgrxdir.clone();