Misc fixes and improvements
* Added request logging to com.noccy.apiclient * Added plugin com.noccy.watcher * Added pipe command and filter support * Fixes and stubs
This commit is contained in:
@ -18,8 +18,16 @@ class GitPlug extends SparkPlug
|
||||
|
||||
register_command(new GitIgnoreCommand());
|
||||
}
|
||||
|
||||
public function getIgnoreList(bool $local=false)
|
||||
{
|
||||
$root = get_environment()->getProjectDirectory();
|
||||
$file = $root . (!$local ? "/.gitignore" : "/.git/info/exclude");
|
||||
return new IgnoreList($file);
|
||||
}
|
||||
}
|
||||
|
||||
//if (file_exists(get_environment()->getConfigDirectory()."/maker.json")) {
|
||||
register_plugin("com.noccy.git", new GitPlug());
|
||||
require_once(__DIR__."/helpers.php");
|
||||
//}
|
||||
|
Reference in New Issue
Block a user