mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
16 lines
214 B
Bash
Executable File
16 lines
214 B
Bash
Executable File
#!/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
|
|
|
|
|