Files
cappuccino/Tools/capp_lint/Jakefile
T
Alexandre Wilhelm cd19fc7c81 New: capp_lint is installed with jake install
Previously we had to install capp_lint separately from Cappuccino.
Now capp_lint will be installed with Cappuccino.
Before capp_lint was installed in /urs/local/bin/, now it is in /usr/local/narwhal/bin/.
2014-04-16 16:49:40 -07:00

12 lines
180 B
JavaScript

require ("../../common.jake");
var OS = require("os"),
task = require("jake").task;
task ("build", function()
{
sudo(["./install.sh"]);
});
task ("default", ["build"]);