xaizek / fragile (License: AGPLv3+) (since 2018-12-07)
Simple lightweight CI, attempting to be somewhat Unix-like in its philosophy.
Commit 12fc802a08c16397845763766785cc5ad38dbd27

Fix a couple of typos in daemon.php
Author: xaizek
Author date (UTC): 2016-03-23 13:12
Committer name: xaizek
Committer date (UTC): 2016-03-23 13:12
Parent(s): 71c8095faea2652553b9bbefc7eaf858581837ff
Signing key:
Tree: a1b7213135f79712a13c8d59f068f2a35c3b8b78
File Lines added Lines deleted
daemon.php 2 2
File daemon.php changed (mode: 100644) (index 964f228..c98ec76)
... ... function prepareRepository()
48 48 * *
49 49 * @param dir Directory path to remove. * @param dir Directory path to remove.
50 50 * *
51 * @returns @Result of rmdir().
51 * @returns Result of rmdir().
52 52 */ */
53 53 function delTree($dir) function delTree($dir)
54 54 { {
 
... ... function createPath($path)
132 132 return false; return false;
133 133 } }
134 134
135 if (!mkdir($path , 0700, true)) {
135 if (!mkdir($path, 0700, true)) {
136 136 die("Failed to create directory: $path\n"); die("Failed to create directory: $path\n");
137 137 } }
138 138 return true; return true;
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/fragile

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/fragile

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master