diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-07-13 22:24:55 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-07-13 22:24:55 +0000 |
commit | 880d7e3d520bb5fcb32a094df10039e73d35dafd (patch) | |
tree | b6d8f73994ab70cc0e5a19c8905ac2af46f19413 | |
parent | 5525f21944592e92d34dd8320fed639e6b756530 (diff) | |
download | cpt-880d7e3d520bb5fcb32a094df10039e73d35dafd.tar.gz |
misc: changes
FossilOrigin-Name: 2ec23cf27ac07875d6a2667eefbec976bb51beb7b59d91554e6a36e3b33e39b3
-rwxr-xr-x | kiss | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,17 +1,17 @@ #!/bin/sh -e # # This is a simple package manager written in POSIX 'sh' for -# KISS Linux utilizing the core UNIX utilities where needed. +# KISS Linux, utilizing the core UNIX utilities where needed. # # The script runs with 'set -e' enabled. It will exit on any # non-zero return code. This ensures that no function continues # if it fails at any point. # # Keep in mind that this involves extra code in the case where -# an error is optional or required. +# an error is optional and/or required. # -# Where possible the package manager should "error first". -# Check things first, die if necessary and continue if all is well. +# Where possible the package manager should check things first, +# die if necessary and continue if all is well. # # The code below conforms to shellcheck's rules. However, some # lint errors *are* disabled as they relate to unexpected |