From 4e809ddf6bcab146ef56ecf4d64899e4cc961a9a Mon Sep 17 00:00:00 2001 From: phoebos Date: Sat, 22 Apr 2023 03:20:42 +0100 Subject: [PATCH] kiss: remove pkg_find_version_split should have been removed in b66a2c4. --- kiss | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/kiss b/kiss index 223c38e..9edb3cc 100755 --- a/kiss +++ b/kiss @@ -314,15 +314,6 @@ pkg_find_version() { die "$pkg" "Build file not found or not executable" } -pkg_find_version_split() { - pkg_find_version "$@" - - # Split the version on '.+-_' to obtain individual components. - IFS=.+-_ read -r repo_major repo_minor repo_patch repo_ident <