An attempt to make the root folder slightly less cluttered and more organized. No functional changes whatsoever.
19 lines
352 B
Bash
Executable file
19 lines
352 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd @working_dir@
|
|
|
|
export FILES="@source_files@"
|
|
export DIR="@input_dir@"
|
|
|
|
@program@ &&
|
|
patch -p4 < @source_patch@ &&
|
|
git add @source_files@ &&
|
|
git commit -m "@source_message@"
|
|
|
|
export FILES="@resource_data@"
|
|
export DIR="@input_dir@"
|
|
|
|
@program@ &&
|
|
patch -p4 < @resource_patch@ &&
|
|
git add @resource_data@ &&
|
|
git commit -m "@resource_message@"
|