From 9a961dbe415c5035d3bc52df8377b1fd58b2341e Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Fri, 21 Mar 2025 10:01:00 -0400 Subject: [PATCH] prep adds git+gitk and better help in quick git --- scripts/core/prep_feisty_host.sh | 8 ++++---- scripts/rev_control/quick_git_release.sh | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/scripts/core/prep_feisty_host.sh b/scripts/core/prep_feisty_host.sh index 29995408..35c4d6d7 100644 --- a/scripts/core/prep_feisty_host.sh +++ b/scripts/core/prep_feisty_host.sh @@ -195,15 +195,15 @@ PAX=(noop) PHASE_MESSAGE="installing crucial OS packages" if [ "$opsystem_here" == "debianesque" ]; then - PAX=(bind9-dnsutils gparted openssh-server ) + PAX=(bind9-dnsutils git gitk gparted openssh-server ) elif [ "$opsystem_here" == "redhatty" ]; then - PAX=(bind9-dnsutils gparted openssh-server ) + PAX=(bind9-dnsutils git gitk gparted openssh-server ) #untested: bind9-dnsutils elif [ "$opsystem_here" == "macos" ]; then - PAX=(bind9-dnsutils openssh-server ) + PAX=(bind9-dnsutils git gitk openssh-server ) #untested: bind9-dnsutils elif [ "$opsystem_here" == "windoze" ]; then - PAX=(bind9-dnsutils gparted openssh-server ) + PAX=(bind9-dnsutils git gitk gparted openssh-server ) #untested: bind9-dnsutils fi diff --git a/scripts/rev_control/quick_git_release.sh b/scripts/rev_control/quick_git_release.sh index 69e68900..e87d860d 100644 --- a/scripts/rev_control/quick_git_release.sh +++ b/scripts/rev_control/quick_git_release.sh @@ -27,8 +27,10 @@ function make_new_feisty_meow_release() if [ -z "$new_version" ]; then echo "\ -$scriptname: this script requires a version name to use for the new branch -name. this version name will become the new tag on the repository. +$scriptname: this script requires a version number to use for the new branch. +the version number will have 'release-' prepended to it to make the new +version name. for example, if '2.140.3000' is passed on the command line, +it would yield a release name of 'release-2.140.3000' in the git repository. " return 1 fi -- 2.34.1