From f3c2cf717c9c9d1614b162892ca7476e285acb43 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Thu, 15 Jul 2021 10:48:42 +0300 Subject: [PATCH] kiss: split on _ also --- kiss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiss b/kiss index 6ed3b01..5468f8e 100755 --- a/kiss +++ b/kiss @@ -186,10 +186,10 @@ pkg_find_version() { die "$1" "Failed to read version file ($repo_dir/version)" case $2 in 1) - # Split the version on '.+-' to obtain individual components. + # Split the version on '.+-_' to obtain individual components. # Intentional, globbing disabled. # shellcheck disable=2086 - IFS=.+- read -r repo_major repo_minor repo_patch repo_ident <