mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
16 lines
214 B
Bash
16 lines
214 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -f bp.patch
|
||
|
|
||
|
cd ../godot
|
||
|
|
||
|
rm -f bp.patch
|
||
|
|
||
|
git format-patch -1 "$1" --stdout > bp.patch
|
||
|
|
||
|
mv bp.patch ../pandemonium_engine_backport/
|
||
|
|
||
|
git am --ignore-whitespace --ignore-space-change -3 < bp.patch
|
||
|
|
||
|
|