作者 刘锟

update

... ... @@ -311,6 +311,10 @@ class HtmlCollect extends Command
if (strpos($vcs, '.') === false) {
continue;
}
$path_arr = explode('.', $vcs);
if(end($path_arr) == 'html'){
continue;
}
$source_info = CollectSource::where('project_id', $project_id)->where('origin', $vcs)->first();
if ($source_info) {
... ...
... ... @@ -318,6 +318,10 @@ class HtmlLanguageCollect extends Command
if (strpos($vcs, '.') === false) {
continue;
}
$path_arr = explode('.', $vcs);
if(end($path_arr) == 'html'){
continue;
}
$source_info = CollectSource::where('project_id', $project_id)->where('origin', $vcs)->first();
if ($source_info) {
... ...