mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-09 02:43:30 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@436 b9cfdab3-6d41-4d17-bbe4-086880011989
8 lines
213 B
Bash
Executable File
8 lines
213 B
Bash
Executable File
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
|