Compare commits
No commits in common. "768bd1444e122e594d4615131f2143f89b2beb05" and "6b15491066098cf68c9b6be484e887047c7155bb" have entirely different histories.
768bd1444e
...
6b15491066
19
.github/workflows/automatic-release.yaml
vendored
19
.github/workflows/automatic-release.yaml
vendored
@ -1,19 +0,0 @@
|
|||||||
---
|
|
||||||
name: Automatic Tag-release
|
|
||||||
|
|
||||||
on: # yamllint disable-line rule:truthy
|
|
||||||
push:
|
|
||||||
branches-ignore:
|
|
||||||
- '**'
|
|
||||||
tags:
|
|
||||||
- 'v*.*.*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
automatic-tag-release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: marvinpinto/action-automatic-releases@latest
|
|
||||||
with:
|
|
||||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
prerelease: false
|
|
2
scwrypts
2
scwrypts
@ -60,7 +60,7 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
|||||||
case $1 in
|
case $1 in
|
||||||
-[a-z][a-z]* )
|
-[a-z][a-z]* )
|
||||||
VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
|
VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
|
||||||
set -- throw-away $(echo " $VARSPLIT ") ${@:2}
|
set -- $(echo " $VARSPLIT ") ${@:2}
|
||||||
;;
|
;;
|
||||||
|
|
||||||
### alternate commands ###################
|
### alternate commands ###################
|
||||||
|
@ -4,9 +4,6 @@
|
|||||||
[ ! $SCWRYPTS_ROOT ] \
|
[ ! $SCWRYPTS_ROOT ] \
|
||||||
&& SCWRYPTS_ROOT="$(cd $(dirname "${0:a:h}"); git rev-parse --show-toplevel)"
|
&& SCWRYPTS_ROOT="$(cd $(dirname "${0:a:h}"); git rev-parse --show-toplevel)"
|
||||||
|
|
||||||
[ ! $SCWRYPTS_ROOT ] && [ -d /usr/share/scwrypts ] \
|
|
||||||
&& SCWRYPTS_ROOT=/usr/share/scwrypts
|
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
DEFAULT_CONFIG="$SCWRYPTS_ROOT/zsh/lib/config.user.zsh"
|
DEFAULT_CONFIG="$SCWRYPTS_ROOT/zsh/lib/config.user.zsh"
|
||||||
|
@ -37,7 +37,7 @@ __CHECK_COREUTILS() {
|
|||||||
do
|
do
|
||||||
__CHECK_DEPENDENCY $UTIL || { ((MISSING_DEPENDENCY_COUNT+=1)); continue; }
|
__CHECK_DEPENDENCY $UTIL || { ((MISSING_DEPENDENCY_COUNT+=1)); continue; }
|
||||||
|
|
||||||
$UTIL --version 2>&1 | grep 'GNU' | grep -qv 'BSD' || {
|
$UTIL --version 2>&1 | grep -q 'GNU' || {
|
||||||
WARNING "non-GNU version of $UTIL detected"
|
WARNING "non-GNU version of $UTIL detected"
|
||||||
((NON_GNU_DEPENDENCY_COUNT+=1))
|
((NON_GNU_DEPENDENCY_COUNT+=1))
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user