diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-08-20 10:29:40 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-08-20 10:29:40 +0000 |
commit | 9b28f74df0d3f9429de50344cb0b654a87ca0f39 (patch) | |
tree | dd3b33c6e1928006d998aedb069a11b85d147e71 /kiss | |
parent | bbd70987950eff6a78ef0611143fcd9865bee3d3 (diff) | |
download | cpt-9b28f74df0d3f9429de50344cb0b654a87ca0f39.tar.gz |
kiss: clean up
FossilOrigin-Name: a2d21df579d2ca4bc13b3375a349eaac6855a367abb21d1014d2a5bfa02289d7
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -449,7 +449,7 @@ pkg_build() { # POSIX 'read' has none of the "nice" options like '-n', '-p' # etc etc. This is the most basic usage of 'read'. - read -r REPLY || exit + read -r || exit } log "Checking to see if any dependencies have already been built" @@ -575,7 +575,7 @@ pkg_build() { # POSIX 'read' has none of the "nice" options like '-n', '-p' # etc etc. This is the most basic usage of 'read'. - read -r REPLY && { + read -r && { args i "$@" return } |