kiss: add check for blank lines / comments

This commit is contained in:
Dylan Araps 2021-07-06 01:39:21 +03:00
parent 874647f287
commit 6a1beec917
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C
1 changed files with 4 additions and 0 deletions

4
kiss
View File

@ -390,6 +390,10 @@ pkg_extract() {
unzip "$_res"
;;
'')
# Blank lines / Comments.
;;
*)
cp -Rf "$_res" .
;;