blob: 1b2f8dbdfcf7547888e0632c8128ca8fb687ea20 [file] [log] [blame]
#!/bin/bash
#
# (Try to) Show the dependency list for applying a given commit on the current
# branch.
#
function handle_one {
stable commit-in-tree $1
if [ $? -eq 1 ]; then
return
fi
echo $1
for i in $(stable-deps.py $1); do
handle_one $i
done
}
handle_one $1