File tree 2 files changed +2
-1
lines changed
Calamari.Azure/Deployment/Conventions
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ private static DeploymentSyncOptions DeploymentSyncOptions(VariableDictionary va
90
90
var syncOptions = new DeploymentSyncOptions
91
91
{
92
92
WhatIf = false ,
93
- UseChecksum = true ,
93
+ UseChecksum = variables . GetFlag ( SpecialVariables . Action . Azure . UseChecksum ) ,
94
94
DoNotDelete = ! variables . GetFlag ( SpecialVariables . Action . Azure . RemoveAdditionalFiles ) ,
95
95
} ;
96
96
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ public static class Azure
142
142
public static readonly string PreserveAppData = "Octopus.Action.Azure.PreserveAppData" ;
143
143
public static readonly string PreservePaths = "Octopus.Action.Azure.PreservePaths" ;
144
144
public static readonly string PhysicalPath = "Octopus.Action.Azure.PhysicalPath" ;
145
+ public static readonly string UseChecksum = "Octopus.Action.Azure.UseChecksum" ;
145
146
146
147
public static readonly string CloudServiceName = "Octopus.Action.Azure.CloudServiceName" ;
147
148
public static readonly string Slot = "Octopus.Action.Azure.Slot" ;
You can’t perform that action at this time.
0 commit comments