Skip to content

Commit

Permalink
Added ".custom" to build cache filenames.
Browse files Browse the repository at this point in the history
This keeps them from having the same name as the module files.
  • Loading branch information
hperrin committed Apr 10, 2014
1 parent 2ad4301 commit 615834b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildcustom.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
exit;
}
sort($files);
$cache_file = 'build-cache/pnotify.'.implode('-', $files).'.'.$min.$ext;
$cache_file = 'build-cache/pnotify.custom.'.implode('-', $files).'.'.$min.$ext;

if (file_exists($cache_file)) {
$content = file_get_contents($cache_file);
Expand Down

0 comments on commit 615834b

Please sign in to comment.