mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
16 lines
194 B
Plaintext
16 lines
194 B
Plaintext
|
|
@import "XCProject.j"
|
|
|
|
var FILE = require("file"),
|
|
OS = require("os");
|
|
|
|
var project = [[XCProject alloc] initWithPath:FILE.cwd()];
|
|
|
|
while (YES)
|
|
{
|
|
[project update];
|
|
|
|
OS.sleep(1);
|
|
}
|
|
|