[ci-force] missed case

This commit is contained in:
Alexander Wang 2022-12-30 17:08:14 -08:00
parent 3e2c5bf18a
commit 5a88f9d331
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE

View file

@ -82,6 +82,8 @@ func (p *execPlugin) HydrateOpts(opts []byte) error {
allString[k] = vt
case int64:
allString[k] = strconv.Itoa(int(vt))
case float64:
allString[k] = strconv.Itoa(int(vt))
}
}