mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-21 16:37:20 +01:00
18 lines
250 B
Bash
Executable File
18 lines
250 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/
|
|
|
|
cd ../pandemonium_engine_backport/
|
|
|
|
git am --ignore-whitespace --ignore-space-change -3 < bp.patch
|
|
|
|
|