Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

33 lines
956 B
Plaintext

#compdef tee gtee
local ret=1
local -a context line state state_descr args
local -A opt_args
args=(
'(: -)--help[display help information]'
'(: -)--version[display version information]'
'(-a --append)'{-a,--append}'[append to files instead of overwriting]'
'(-i --ignore-interrupts)'{-i,--ignore-interrupts}'[ignore interrupt signals]'
'(--output-error)-p[warn on errors writing to non-pipes]'
'(-p)--output-error=[specify write-error behavior]: :->errmodes'
)
# Filter out non-GNU options if applicable
_pick_variant gnu='Free Soft' unix --version ||
args=( ${(@M)args:#(|*\))-[ai]\[*} )
_arguments -s -S : $args '*: :_files' && ret=0
[[ $state == errmodes ]] && {
args=(
'exit[exit on errors writing to any output]'
'exit-nopipe[exit on errors writing to non-pipes]'
'warn[warn on errors writing to any output]'
'warn-nopipe[warn on errors writing to non-pipes]'
)
_values 'error mode' $args && ret=0
}
return ret