From 7020818585e91e332dd76f7a332d0341599cc245 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 19 Aug 2019 17:07:50 +0000 Subject: [PATCH] misc: cleanup --- kiss | 6 +++--- 1 file 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.