Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
Loading items

Target

Select target project
  • coscine/backend/scripts/kpi-generator
1 result
Select Git revision
Loading items
Show changes
Commits on Source (2)
......@@ -7,7 +7,7 @@
<AssemblyName>Coscine.KpiGenerator</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.1.18</Version>
<Version>0.1.19</Version>
</PropertyGroup>
<PropertyGroup>
......
......@@ -110,7 +110,7 @@ public abstract class Reporting<O> where O : class
foreach (var fileInProject in projectTree.Where(file => file.Type.Equals("blob")))
{
// Ignore the files named "List of Reporting Variables.xlsx" and "README.md"
if (!files.Any(f => f.Path.Equals(fileInProject.Path)) && (!fileInProject.Path.Equals("README.md") || !fileInProject.Path.Equals("List of Reporting Variables.xlsx")))
if (!files.Any(f => f.Path.Equals(fileInProject.Path)) && (!fileInProject.Path.Equals("README.md") || !fileInProject.Path.Equals("List_of_Reporting_Variables.xlsx")))
{
// Add Action
actions.Add(new CreateCommitRequestAction(CreateCommitRequestActionType.Delete, fileInProject.Path));
......