kiss: use continue

This commit is contained in:
Dylan Araps 2020-09-14 22:31:22 +03:00
parent 73caec34b4
commit 8261c230fc
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 2 deletions

4
kiss
View File

@ -671,7 +671,7 @@ pkg_checksums() {
while read -r src _ || [ "$src" ]; do
# Skip comments, blank lines and git sources.
if [ -z "${src##\#*}" ] || [ -z "${src##git+*}" ]; then
:
continue
# Remote source.
elif [ -z "${src##*://*}" ]; then
@ -679,7 +679,7 @@ pkg_checksums() {
# Skip directories.
elif [ -d "$repo_dir/$src" ] || [ -d "/$src" ]; then
:
continue
# Local file (relative).
elif [ -f "$repo_dir/$src" ]; then