shoestrap/assets/default/bin/gh-am

17 lines
230 B
Bash
Executable File

#! /bin/bash
# gh-am Applies a Github PR as a patch
# Author: ViViDboarder
set -e
get_patch() {
local pr_url=$1
curl -L $pr_url.patch 2> /dev/null
}
main() {
local pr_url=$1
get_patch $pr_url | git am
}
main $*