Skip to content

Commit 0027df8

Browse files
author
Scott Murray
committed
Finishing touches on reference generation script, fixes #113
1 parent 581b572 commit 0027df8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

generate/reference.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@
99
// Pull latest processing/processing from GitHub
1010
// Note that the Reference generate script needs this,
1111
// just in case someone changed anything in the .java source files.
12+
echo '<p>Pulling in latest changes from processing/processing/...</p>';
1213
$mainRepoPath = $path . '../processing';
13-
echo '<p>' . $mainRepoPath . '</p>';
1414
`cd $mainRepoPath && /usr/bin/git pull https://github.com/processing/processing/`;
1515

1616
// Pull latest processing/processing-docs from GitHub
17+
echo '<p>Pulling in latest changes from processing/processing-docs/...</p>';
1718
`cd $path && /usr/bin/git pull https://github.com/processing/processing-docs/`;
1819

1920
$referencepath = $path . "java_generate/ReferenceGenerator/";
2021

2122
//
23+
echo '<p>Rebuilding reference files...</p>';
2224
`cd $referencepath && ./processingrefBuild.sh`;
2325

2426
$benchmark_end = microtime_float();

0 commit comments

Comments
 (0)