Merge pull request #1 from n8225/testpr

fix brimir
This commit is contained in:
n8225 2016-10-24 19:40:53 -07:00 committed by GitHub
commit 4cfd3e39ca
2 changed files with 3 additions and 1 deletions

View File

@ -1016,7 +1016,7 @@ See https://staticsitegenerators.net and https://www.staticgen.com
*See also [Task management/To-do lists](#task-managementto-do-lists) and [Project Management](#project-management)*
* [Brimir](https://getbrimir.com/) - Simple and clean open-source ticket manager written in Ruby on Rails. ([So urce Code](https://github.com/ivaldi/brimir)) `AGPLv3` `Ruby`
* [Brimir](https://getbrimir.com/) - Simple and clean open-source ticket manager written in Ruby on Rails. ([Source Code](https://github.com/ivaldi/brimir)) `AGPLv3` `Ruby`
* [Bugzilla](https://www.bugzilla.org/) - General-purpose bugtracker and testing tool originally developed and used by the Mozilla project. `MPLv2` `Perl`
* [Bumpy Booby](http://bumpy-booby.derivoile.fr/) - A simple, responsive and highly customizable PHP bug tracking system. ([Source Code](https://github.com/piero-la-lune/Bumpy-Booby)) `MIT` `PHP`
* [Cerb](http://www.cerberusweb.com/) - Group-based e-mail management project. ([Source Code](https://github.com/wgm/cerb)) `DPL` `PHP`

View File

@ -27,10 +27,12 @@ function entryErrorCheck(md) {
if (entryArray[i].pass == true) {
totalPass += 1;
//console.log(i + 1 + ". Pass: " + entryArray[i].name);
process.exit(0);
} else {
console.log("Line #" + i + 1 + ". Fail: " + entryArray[i].name);
//console.log(entries[i]);
totalFail += 1;
process.exit(1);
}
}
}