Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
passcod committed Oct 25, 2023
1 parent 427a200 commit 7a48ed9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cargo-pgrx/src/command/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<PathBuf> {
fn untar(
bytes: &[u8],
pgrxdir: &PathBuf,
pg_config: &PgConfig,
init: &Init,
) -> eyre::Result<PathBuf> {
let _token = init.jobserver.get().unwrap().acquire().unwrap();

let mut pgdir = pgrxdir.clone();
Expand Down

0 comments on commit 7a48ed9

Please sign in to comment.