Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
amr-crabnebula committed Oct 10, 2024
1 parent fea80d5 commit 4ed4e4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/packager/src/package/pacman/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ fn generate_pkgbuild_file(
let sha_hash = sha512.finalize();

writeln!(file, "sha512sums=(\"{:x}\")", sha_hash)?;
writeln!(file, "package() {{\n\tcp -r \"${{srcdir}}\"/* \"${{pkgdir}}\"/\n}}")?;
writeln!(
file,
"package() {{\n\tcp -r \"${{srcdir}}\"/* \"${{pkgdir}}\"/\n}}"
)?;

file.flush()?;
Ok(())
Expand Down

0 comments on commit 4ed4e4e

Please sign in to comment.