Meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. https://bugzilla.gnome.org/show_bug.cgi?id=785414
10 lines
157 B
Bash
Executable file
10 lines
157 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd @working_dir@
|
|
|
|
export FILES="@source_files@"
|
|
export DIR="@input_dir@"
|
|
|
|
@program@ &&
|
|
git add @source_files@ &&
|
|
git commit -m "@source_message@"
|