1
0
mirror of https://github.com/pattern-lab/patternlab-php.git synced 2025-02-16 13:34:37 +01:00

the default instructions for CLI how include the exact path to the builder

This commit is contained in:
Dave Olsen 2013-07-05 11:06:39 -04:00
parent 81b5cc60af
commit 94c0bdd033

@ -59,9 +59,9 @@ if (php_sapi_name() == 'cli') {
// when in doubt write out the usage
print "\n";
print "Usage:\n\n";
print " php builder.php -g\n";
print " php ".$_SERVER["PHP_SELF"]." -g\n";
print " Iterates over the 'source' directories & files and generates the entire site a single time.\n\n";
print " php builder.php -w\n";
print " php ".$_SERVER["PHP_SELF"]." -w\n";
print " Generates the site like the -g flag and then watches for changes in the 'source' directories &\n";
print " files. Will re-generate files if they've changed.\n\n";