minor nitpicks

This commit is contained in:
Emma Tebibyte 2024-06-26 18:41:48 -06:00
parent c0608baa7b
commit 0568b2a8f0
Signed by: emma
GPG Key ID: 06FA419A1698C270

12
en
View File

@ -1,15 +1,21 @@
#!/bin/sh -e #!/bin/sh
# Copyright (c) 2023-2024 Emma Tebibyte <emma@tebibyte.media> # Copyright (c) 20232024 Emma Tebibyte <emma@tebibyte.media>
# SPDX-License-Identifier: FSFAP # SPDX-License-Identifier: FSFAP
# #
# Copying and distribution of this file, with or without modification, are # Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty provided the copyright notice and this # permitted in any medium without royalty provided the copyright notice and this
# notice are preserved. This file is offered as-is, without any warranty. # notice are preserved. This file is offered as-is, without any warranty.
set -e
if test -n "$DEBUG"; then
set -x
fi
if command -v highlight >/dev/null 2>&1 if command -v highlight >/dev/null 2>&1
then then
HIGHLIGHT_OPTIONS='--out-format=ansi'; export HIGHLIGHT_OPTIONS export HIGHLIGHT_OPTIONS='--out-format=ansi'
else else
alias highlight=cat alias highlight=cat
fi fi