rustc/debian/llvm-upstream-patch.sh
2017-12-15 19:07:53 +01:00

10 lines
356 B
Bash
Executable File

#!/bin/sh
# Run this on https://github.com/llvm-mirror/llvm
# Or another repo where the above is the "upstream" remote
set -e
head=$(git rev-parse --verify -q remotes/upstream/master || git rev-parse --verify -q remotes/origin/master)
test -n "$head"
for i in "$@"; do
git show $(git rev-list "$head" -n1 --grep='git-svn-id: .*@'"$i") > rL"$i".patch
done