mirror of
https://github.com/usual2970/certimate.git
synced 2025-08-11 03:41:46 +00:00
fix misspelling var name
This commit is contained in:
@@ -101,9 +101,9 @@ func (d *TencentCDNDeployer) Deploy(ctx context.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
temp := make([]string, 0)
|
temp := make([]string, 0)
|
||||||
for _, aliInstanceId := range tcInstanceIds {
|
for _, tcInstanceId := range tcInstanceIds {
|
||||||
if !slices.Contains(deployedDomains, aliInstanceId) {
|
if !slices.Contains(deployedDomains, tcInstanceId) {
|
||||||
temp = append(temp, aliInstanceId)
|
temp = append(temp, tcInstanceId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
tcInstanceIds = temp
|
tcInstanceIds = temp
|
||||||
|
Reference in New Issue
Block a user