Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the way of generating $fingerprint #222

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

purekid
Copy link

@purekid purekid commented Dec 3, 2013

' array_to_newlines() ' , this function use a constant ' PHP_EOL' .

define ('PHP_EOL', "\n");

function array_to_newlines(array $array)
{
    return implode(PHP_EOL, $array);
}

$build = array_to_newlines($assets->map(function($asset) { return $asset->build(true); })->all());

$fingerprint = $identifier.'-'.md5($build).'.'.$collection->getExtension($group);

Windows use '\n\r' to break line , and Linux,MacOS use '\n'.

So when I use the same code to build production in Windows and Linux(Mac) , I get two different $fingerprint and create two different build file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant