mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-11 15:09:51 +00:00
fix misspelling var name
This commit is contained in:
parent
2ff923dd1b
commit
952e9687d0
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user