15 lines
662 B
Bash
Executable File
15 lines
662 B
Bash
Executable File
#!/bin/bash
|
|
# Debug hook to identify available variables
|
|
|
|
echo "=== Hook Debug ===" >> /tmp/hook-debug.log
|
|
echo "Date: $(date)" >> /tmp/hook-debug.log
|
|
echo "All args: $@" >> /tmp/hook-debug.log
|
|
echo "Arg count: $#" >> /tmp/hook-debug.log
|
|
echo "Arg 1: ${1:-EMPTY}" >> /tmp/hook-debug.log
|
|
echo "Arg 2: ${2:-EMPTY}" >> /tmp/hook-debug.log
|
|
echo "Arg 3: ${3:-EMPTY}" >> /tmp/hook-debug.log
|
|
echo "Environment:" >> /tmp/hook-debug.log
|
|
env | grep -i file >> /tmp/hook-debug.log 2>/dev/null || true
|
|
env | grep -i path >> /tmp/hook-debug.log 2>/dev/null || true
|
|
env | grep -i tool >> /tmp/hook-debug.log 2>/dev/null || true
|
|
echo "==================" >> /tmp/hook-debug.log |