git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@437 b9cfdab3-6d41-4d17-bbe4-086880011989
10 lines
241 B
Bash
Executable file
10 lines
241 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# $Id$
|
|
|
|
if [[ $1 -eq "" ]]; then
|
|
echo "Blank argument."
|
|
exit
|
|
fi
|
|
|
|
echo "Applying PR #$1 (https://github.com/pyrite-dev/milsko/pull/$1.diff)"
|
|
curl https://github.com/pyrite-dev/milsko/pull/$1.diff -L | patch -p1
|