Skip to content

Commit

Permalink
Fix Conflicts syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tmccombs committed Jul 22, 2024
1 parent e3b7dcb commit 830fed4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/create-deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ fi
case "$TARGET" in
*-musl*)
DPKG_BASENAME=fd-musl
DPKG_CONFLICTS=fd
DPKG_CONFLICTS="fd, fd-find"
;;
*)
DPKG_BASENAME=fd
DPKG_CONFLICTS=fd-musl
DPKG_CONFLICTS="fd-musl, fd-find"
;;
esac

Expand Down Expand Up @@ -115,7 +115,7 @@ Maintainer: ${MAINTAINER}
Homepage: ${REPO}
Architecture: ${DPKG_ARCH}
Provides: fd
Conflicts: ${DPKG_CONFLICTS} fdfind
Conflicts: ${DPKG_CONFLICTS}
Description: simple, fast and user-friendly alternative to find
fd is a program to find entries in your filesystem.
It is a simple, fast and user-friendly alternative to find.
Expand Down

0 comments on commit 830fed4

Please sign in to comment.