From 8f88aa56fd37d5ee182e6d32d537b00284ae1869 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 14 Feb 2020 18:06:47 +0200 Subject: [PATCH] kiss: comment support in sources --- kiss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/kiss b/kiss index ed927a1..3a11208 100755 --- a/kiss +++ b/kiss @@ -173,8 +173,11 @@ pkg_sources() { repo_dir=$(pkg_find "$1") while read -r src dest || [ "$src" ]; do + # Comment. + if [ -z "${src##\#*}" ]; then : + # Remote source (cached). - if [ -f "${src##*/}" ]; then + elif [ -f "${src##*/}" ]; then log "$1" "Found cached source '${src##*/}'" # Remote git repository. @@ -235,10 +238,8 @@ pkg_extract() { die "Commit hash ${src##*#} doesn't exist" ;; - # Git repository. - git+*) - continue - ;; + # Git repository or comment. + git+*|\#*) continue ;; # Only 'tar' archives are currently supported for extraction. # Any other file-types are simply copied to '$mak_dir' which