Add support for php 8.1
This commit adds optional support for basing images on php 8.1 as opposed to php 8.0.
This commit is contained in:
parent
3ef9c23a0c
commit
d114c8fafe
12 changed files with 91 additions and 9 deletions
|
|
@ -37,7 +37,7 @@ func (purger *Purger) Purge(ctx context.Context, out io.Writer, slug string) err
|
|||
instance, err := purger.Dependencies.Instances.WissKI(ctx, slug)
|
||||
if err == instances.ErrWissKINotFound {
|
||||
fmt.Fprintln(out, "Not found in bookkeeping table, assuming defaults")
|
||||
instance, err = purger.Dependencies.Instances.Create(slug)
|
||||
instance, err = purger.Dependencies.Instances.Create(slug, "")
|
||||
}
|
||||
if err != nil {
|
||||
return errPurgeNoDetails.WithMessageF(err)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue