Compare commits

..

2 Commits

Author SHA1 Message Date
5c882597da v2.5.1
=====================================================================

--- Bug Fixes ----------------------------

- git/package/install didn't create build dir if it did not exist
2022-08-16 18:48:56 -06:00
4047aad29e fixed credits bug with dashes 2022-08-16 18:44:25 -06:00
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ source ${0:a:h}/../common.zsh
##################################################################### #####################################################################
PACKAGE_INSTALL_DIR="$HOME/.local/share/source-packages" PACKAGE_INSTALL_DIR="$HOME/.local/share/source-packages"
[ ! -d "$PACKAGE_INSTALL_DIR" ] && mkdir -p "$PACKAGE_INSTALL_DIR"
##################################################################### #####################################################################

View File

@ -3,6 +3,7 @@ __CREDITS() {
[ ! $SCWRYPTS_ROOT ] && return 0 [ ! $SCWRYPTS_ROOT ] && return 0
local COMMAND="$1" local COMMAND="$1"
[[ $COMMAND =~ - ]] && COMMAND=$(echo $COMMAND | sed 's/-/--/g')
cd $SCWRYPTS_ROOT cd $SCWRYPTS_ROOT
cat ./**/README.md \ cat ./**/README.md \
| grep 'Generic Badge' \ | grep 'Generic Badge' \