Bugfixes
This commit is contained in:
4
build/app.prop
Normal file
4
build/app.prop
Normal file
@ -0,0 +1,4 @@
|
||||
# comment
|
||||
|
||||
APP_VERSION=0.2.x
|
||||
APP_NAME=hotfix
|
10
build/gitprops.php
Normal file
10
build/gitprops.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
$git = trim(exec("git describe --tags"));
|
||||
$git = explode("-",$git);
|
||||
if (count($git)>1) {
|
||||
$git = array_slice($git,0,2);
|
||||
}
|
||||
$git = join(".",$git);
|
||||
|
||||
echo "APP_VERSION={$git}\n";
|
Reference in New Issue
Block a user