We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410068d commit dd0b9a8Copy full SHA for dd0b9a8
content/oci/oci.go
@@ -44,8 +44,10 @@ import (
44
type Store struct {
45
// AutoSaveIndex controls if the OCI store will automatically save the index
46
// file when needed.
47
- // - If AutoSaveIndex is set to true, the OCI store will automatically save the
48
- // changes to `index.json` on Tag() and Delete() calls, and when pushing a manifest.
+ // - If AutoSaveIndex is set to true, the OCI store will automatically save
+ // the changes to `index.json` when
49
+ // 1. pushing a manifest
50
+ // 2. calling Tag() or Delete()
51
// - If AutoSaveIndex is set to false, it's the caller's responsibility
52
// to manually call SaveIndex() when needed.
53
// - Default value: true.
0 commit comments