summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThayne McCombs <astrothayne@gmail.com>2024-07-22 01:34:03 -0600
committerThayne McCombs <astrothayne@gmail.com>2024-07-22 01:34:03 -0600
commit830fed4f826a6a560cb33ff3c76e2f1ec1755eff (patch)
treedbc803fac2b1e84fb1d86e2013a735a49b02c92d
parente3b7dcbb7eea0f5d5fed8f8414f6d0dfa2835e42 (diff)
Fix Conflicts syntaxdeb-improvements
-rwxr-xr-xscripts/create-deb.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create-deb.sh b/scripts/create-deb.sh
index 14303f0..a843bd6 100755
--- a/scripts/create-deb.sh
+++ b/scripts/create-deb.sh
@@ -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
@@ -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.