~bigbes/sourcehut-root

ref: dd5809939058008a526cca484aa65d07c3846a8e sourcehut-root/justfile -rw-r--r-- 369 bytes
dd580993 — Eugene Blikh patches: core-go-checksum — fix the actual sigv4 bug, not flexible-checksums a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
_default:
    @just --list

skill := "sourcehut-ci"
src   := "skills/" + skill
dst   := "~/.claude/skills/" + skill

# Install the backed-up skill into ~/.claude/skills (repo -> ~/.claude)
install:
    mkdir -p {{dst}}
    rsync -a --delete --exclude='.*' {{src}}/ {{dst}}/
    @echo "Installed {{skill}} -> {{dst}} ($(find {{dst}} -type f | wc -l | tr -d ' ') files)"