From f25d094d0652e8dedff206ca56671b3548f755ff Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Thu, 17 Sep 2026 15:05:37 +0100 Subject: Add a disposable Canonical desktop test VM --- just-lib.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'just-lib.sh') diff --git a/just-lib.sh b/just-lib.sh index 5caa79f..dadf427 100644 --- a/just-lib.sh +++ b/just-lib.sh @@ -15,18 +15,18 @@ _find_shells() { \( -name '*.sh' \ -o -path './dot_local/bin/executable_*' \ -o -path './dot_config/sway/executable_*' \) \ - -not -path './.git/*' -not -path './.worktrees/*' + -not -path './.git/*' -not -path './.worktrees/*' -not -path './tmp/*' } _find_by_ext() { find . -type f -name "*.$1" \ - -not -path './.git/*' -not -path './.worktrees/*' + -not -path './.git/*' -not -path './.worktrees/*' -not -path './tmp/*' } _find_zsh() { find . -type f \ \( -name 'dot_zshrc' -o -name 'dot_zshenv' -o -name 'dot_zprofile' \) \ - -not -path './.git/*' -not -path './.worktrees/*' + -not -path './.git/*' -not -path './.worktrees/*' -not -path './tmp/*' } _is_zsh() { -- cgit v1.3.1