- aliases/_agent.alias: aq, aqs (status), aqd (dash) — path-relative to repo - register _agent.alias in _source_all.alias loader + document in README - shell-ci: gate shellcheck on agent-queue.sh; bytelyst-cli.sh shellcheck is non-gating (pre-existing legacy SC2199 in check_collaborators), bash -n still gates both
19 lines
618 B
Plaintext
19 lines
618 B
Plaintext
if [ -n "${BASH_SOURCE[0]:-}" ]; then
|
|
_bytelyst_alias_source="${BASH_SOURCE[0]}"
|
|
elif [ -n "${ZSH_VERSION:-}" ]; then
|
|
_bytelyst_alias_source="${(%):-%N}"
|
|
else
|
|
_bytelyst_alias_source="$0"
|
|
fi
|
|
|
|
BYTELYST_ALIAS_DIR="$(cd -- "$(dirname -- "$_bytelyst_alias_source")" >/dev/null 2>&1 && pwd -P)"
|
|
unset _bytelyst_alias_source
|
|
|
|
source "$BYTELYST_ALIAS_DIR/_git.alias"
|
|
source "$BYTELYST_ALIAS_DIR/_tmux.alias"
|
|
source "$BYTELYST_ALIAS_DIR/_cd.alias"
|
|
source "$BYTELYST_ALIAS_DIR/_ls.alias"
|
|
source "$BYTELYST_ALIAS_DIR/_general.alias"
|
|
source "$BYTELYST_ALIAS_DIR/_shell.alias"
|
|
source "$BYTELYST_ALIAS_DIR/_agent.alias"
|