From 0568b2a8f04feb6003d7c71e786b2d5b07c0ad11 Mon Sep 17 00:00:00 2001 From: emma Date: Wed, 26 Jun 2024 18:41:48 -0600 Subject: [PATCH] minor nitpicks --- en | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/en b/en index 7ebea22..57c03bb 100755 --- a/en +++ b/en @@ -1,15 +1,21 @@ -#!/bin/sh -e +#!/bin/sh -# Copyright (c) 2023-2024 Emma Tebibyte +# Copyright (c) 2023–2024 Emma Tebibyte # SPDX-License-Identifier: FSFAP # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice and this # 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 then - HIGHLIGHT_OPTIONS='--out-format=ansi'; export HIGHLIGHT_OPTIONS + export HIGHLIGHT_OPTIONS='--out-format=ansi' else alias highlight=cat fi