7 lines
333 B
Bash
Executable File
7 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
# V31 batch generator - Opus WIRE doctrine 13+7 - Skill: git-last-commit-author
|
|
# Description: Git last commit author
|
|
# Whitelist-safe timeout 8s
|
|
set +e
|
|
timeout 8 bash -c "cd /var/www/html && git log -1 --pretty=%an 2>/dev/null" 2>&1 || echo "{\"skill\":\"git-last-commit-author\",\"error\":\"timeout_or_missing_tool\"}"
|