From ab2fade1c130c8fddfcef075709afae544a22679 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=28Buo-ren=2C=20Lin=29?= Date: Sun, 24 Mar 2024 02:06:10 +0800 Subject: [PATCH] BREAKING CHANGE: fix: Rename the primitive variant to bare-minimum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The previous variant name is hard to distinguish with the basic variant. Signed-off-by: ๆž—ๅšไป(Buo-ren, Lin) --- README.md | 4 ++-- primitive.sh => bare-minimum.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename primitive.sh => bare-minimum.sh (100%) diff --git a/README.md b/README.md index 398fe08..e7fa1c1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Ready-to-use bash shell script templates at your fingertips! This product provides several _flavors_ of the Bash script template to satisfy different needs: -### [PRIMITIVE](primitive.sh) +### [BARE-MINIMUM](bare-minimum.sh) The considered to be the bare-minimum for bash scripting: @@ -19,7 +19,7 @@ The considered to be the bare-minimum for bash scripting: ### [BASIC](basic.sh) -Inherited from the [PRIMITIVE](#primitive) flavor, but with the following additions: +Inherited from the [BARE-MINIMUM](#bare-minimum) flavor, but with the following additions: * Runtime dependency detection(check whether all the required commands are available from the command search PATHs * The following convenience variable definitions: diff --git a/primitive.sh b/bare-minimum.sh similarity index 100% rename from primitive.sh rename to bare-minimum.sh