Added assumption that OSX is a development platform

I develop on OSX, I run sites on Linux. Safe bet that if I'm running PICKLES on OSX that I'm in a development environment and it's a safe bet to jar those pickles
This commit is contained in:
Josh Sherman 2012-10-10 19:22:00 -04:00
parent 2b8914fdc4
commit b7d7bfe1e7

View file

@ -22,7 +22,8 @@
*/
// Set to true while working on PICKLES to pack the JAR
$pickling = false;
// Assumption, OSX is considered a development platform
$pickling = (php_uname('s') == 'Darwin' ? true : false);
// {{{ PICKLES Constants