From 0f035475488104df0b4593971009914275013cd7 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 14 Oct 2021 14:30:39 -0700 Subject: [PATCH] mark `preload` as compatible with all 4 shells --- sh/preload | 4 ++++ tableize | 1 + 2 files changed, 5 insertions(+) diff --git a/sh/preload b/sh/preload index 32bad98..52cd9cd 100644 --- a/sh/preload +++ b/sh/preload @@ -1,5 +1,9 @@ #!/usr/bin/env false +# i don't want this to be automatically amalgamated, +# but it *is* compatible with the usual 4 shells, so: +# FAKE_COMPAT + preload() { ### @- handle dependencies within the [`~/sh/`](/sh) directory. ### this function contains more comments than code, so you should read it. # all sourced files from within the preload function will instead diff --git a/tableize b/tableize index 2813650..a6e9c64 100755 --- a/tableize +++ b/tableize @@ -45,6 +45,7 @@ tableize() { YES_BASH) bash=yes;; YES_DASH) dash=yes;; YES_ASH) ash=yes;; + FAKE_COMPAT) zsh=yes; bash=yes; dash=yes; ash=yes;; NO_ZSH) zsh=no;; NO_BASH) bash=no;; NO_DASH) dash=no;;