Skip to content

Instantly share code, notes, and snippets.

View patspam's full-sized avatar

Patrick Donelan patspam

View GitHub Profile
@patspam
patspam / clang_compilation_db_merger.js
Last active August 29, 2015 14:00
clang_compilation_db_merger.js
var path = require('path');
var fs = require('fs');
var args = processArgs();
var merged = merge(args);
writeOutput(args, merged);
function die(message) {
console.error(message);
process.exit();