From 80cf1b4322b0e8df1ee3836f89d7da3c1148428b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 19 Aug 2019 17:06:31 +0000 Subject: [PATCH] misc: cleanup --- kiss | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/kiss b/kiss index b956ac5..461c656 100755 --- a/kiss +++ b/kiss @@ -42,12 +42,10 @@ pkg_lint() { # Check that each mandatory file in the package entry exists. log "[$1]: Checking repository files..." - # Figure out *where* the repository entry for the package - # is located. + # Figure out *where* the repository entry for the package is located. repo_dir=$(pkg_search "$1") cd "$repo_dir" || die "'$repo_dir' not accessible" - [ -f sources ] || die "[$1]: Sources file not found." [ -x build ] || die "[$1]: Build file not found or not executable." [ -s version ] || die "[$1]: Version file not found or empty."