| Revision 852,
326 bytes
checked in by cdleonard@…, 4 years ago
(diff) |
|
svn:eol-style native in trunk. Also svn:executable on all scripts
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #! /usr/bin/env php |
|---|
| 2 | <?php |
|---|
| 3 | |
|---|
| 4 | $pwd = dirname($argv[0]); |
|---|
| 5 | require_once($pwd."/utilities.php"); |
|---|
| 6 | |
|---|
| 7 | // pushd |
|---|
| 8 | chdir(IA_ROOT_DIR); |
|---|
| 9 | |
|---|
| 10 | // rebuild dependecy database. requires ctags! |
|---|
| 11 | log_print("Rebuilding database. (this requires ctags)"); |
|---|
| 12 | system("./scripts/_dcbuild >./scripts/dep-check.db"); |
|---|
| 13 | |
|---|
| 14 | // popd |
|---|
| 15 | chdir($pwd); |
|---|
| 16 | |
|---|
| 17 | log_print('Done!'); |
|---|
| 18 | |
|---|
| 19 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.