mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
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/.
12 lines
180 B
JavaScript
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"]); |