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:
parent
2b8914fdc4
commit
b7d7bfe1e7
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue