aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-08-19 17:07:49 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-08-19 17:07:49 +0000
commitfb69bec3fc59833f98da59b94c3dcc02ea04a5c8 (patch)
tree37b6e4892ecf9abdd3b58195eff53d94a1f37265 /kiss
parent1404a293e6426b5f52cb5f2424bb8dcbf0227c4a (diff)
downloadcpt-fb69bec3fc59833f98da59b94c3dcc02ea04a5c8.tar.gz
misc: cleanup
FossilOrigin-Name: 7a69b50f4b2ccf21f339312f737a1e91f2f1f9260166f75a4c14f27a628d8c76
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss6
1 files changed, 3 insertions, 3 deletions
diff --git a/kiss b/kiss
index 61cdf32..b6914c9 100755
--- a/kiss
+++ b/kiss
@@ -1,13 +1,13 @@
#!/bin/sh -ef
#
+# This is a simple package manager written in POSIX 'sh' for
+# KISS Linux, utilizing the core UNIX utilities where needed.
+#
# Disable warnings against word-splitting and globbing.
# They are used *safely* throughout this script as globbing
# is globally disabled and assumptions can be made about the input.
# shellcheck disable=2046,2086
#
-# This is a simple package manager written in POSIX 'sh' for
-# 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.