Bugfixes
This commit is contained in:
parent
2dce9e4e8b
commit
989a8b831e
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
define("APP_VERSION", "0.1-pre");
|
||||
if (!defined('APP_VERSION')) define("APP_VERSION", "0.1-pre");
|
||||
|
||||
require_once __DIR__."/../vendor/autoload.php";
|
||||
require_once __DIR__."/systemtest.php";
|
||||
|
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";
|
@ -18,6 +18,7 @@
|
||||
"symfony/console": "^3.0",
|
||||
"symfony/yaml": "^3.0",
|
||||
"noccylabs/downloader": "@dev",
|
||||
"symfony/expression-language": "^3.2"
|
||||
"symfony/expression-language": "^3.2",
|
||||
"noccylabs/tinyphar": "^0.1.1"
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ ! -d ~/bin ]; then
|
||||
echo "Creating ~/bin..."
|
||||
mkdir ~/bin
|
||||
fi
|
||||
|
||||
echo "Installing hotfix executable..."
|
||||
cp hotfix ~/bin/hotfix
|
||||
echo "Fixing permissions..."
|
||||
|
@ -1,5 +1,11 @@
|
||||
This installer will put hotfix into the bin directory of the current user, ie. install it as ~/bin/hotfix. If the directory does not exist, it will be created.
|
||||
|
||||
Most Linux distributions will automatically add ~/bin to the path if it exists. If hotfix isn't callable from the command line after restarting your shell and/or rebooting, please consult the documentation.
|
||||
This will install hotfix into the bin directory of the current user (as ~/bin/hotfix). If
|
||||
the directory does not exist, it will be created. Most Linux distributions will add the
|
||||
~/bin directory to the path if it is found. If hotfix isn't callable from the command line
|
||||
after restarting your shell and/or rebooting, please consult the documentation.
|
||||
|
||||
Some basic aliases will be installed into ~/.hotfix.conf if the file doesn't already exist.
|
||||
Just remember to import the keys of the publishers whose hotfixes you are applying!
|
||||
|
||||
|
||||
|
||||
This installer was created on %{installer.date}
|
||||
|
Loading…
Reference in New Issue
Block a user