diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-02-14 16:07:59 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2020-02-14 16:07:59 +0000 |
commit | dc2d7ec88f352da94924402cf1ae5f7e09415c54 (patch) | |
tree | 8b43d0429bfde583ea8a38b6b825cefec95a6fc7 /kiss | |
parent | 73aecebfc38dc0b22d11c6873b23d8fc6893c22a (diff) | |
download | cpt-dc2d7ec88f352da94924402cf1ae5f7e09415c54.tar.gz |
sources: support blank lines
FossilOrigin-Name: 734853e7ef97d2f5b516e279ebab0c6828ad858bdf60b99800a8bddb30d7508f
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -238,8 +238,8 @@ pkg_extract() { die "Commit hash ${src##*#} doesn't exist" ;; - # Git repository or comment. - git+*|\#*) continue ;; + # Git repository, comment or blank line. + git+*|\#*|'') continue ;; # Only 'tar' archives are currently supported for extraction. # Any other file-types are simply copied to '$mak_dir' which |